Resend Invitation
GET/v1/acquirer/merchants/:merchant_id/users/:user_id/invitations/resend
Regenerate the invitation token of a user who has not yet accepted their invitation and email them a fresh invitation link.
Returns HTTP 400 if the invitation has already been accepted.
Required permission: merchant_users_update.
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
- 400
- 401
- 403
- 404
Invitation email queued.
- application/json
- Schema
- Example (from schema)
- Example
Schema
message stringrequired
{
"message": "string"
}
{
"message": "Invitation sent successfully."
}
Business rule violation.
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
{
"message": "Invalid type"
}
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...