Send Password Reset
POST/v1/acquirer/merchants/:merchant_id/users/:user_id/password
Generate a password reset token for the user and email them a reset link.
Required permission: merchant_users_password_reset.
Request
Path Parameters
merchant_id stringrequired
Acquirer-assigned merchant identifier (the merchant_id field of
the merchant, not its internal UUID).
user_id uuidrequired
Merchant user UUID.
Responses
- 200
- 401
- 403
- 404
Reset email queued.
- application/json
- Schema
- Example (from schema)
- Example
Schema
message stringrequired
{
"message": "string"
}
{
"message": "A reset email will be sent to the user shortly."
}
Authentication failed.
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
{
"message": "Missing authentication information"
}
The API key lacks the required permission.
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
{
"message": "Unauthorized"
}
The referenced resource does not exist or belongs to another acquirer.
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
{
"message": "The Order you are looking for was not found."
}
Loading...