POST
/
customers
/
{customerID}
/
users
/
{userID}
/
resend-invite
curl --request POST \
  --url https://api.joinworth.com/auth/api/v1/customers/{customerID}/users/{userID}/resend-invite \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "message": "Invite mail sent successfully"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

customerID
string
required
userID
string
required

Response

200
application/json
OK
status
string
required
Example:

"success"

message
string
required
Example:

"Invite mail sent successfully"