Resend invitation

Description

Resend platform invitation to specified user.

Request

HTTP Method: POST

Query Parameter Description
N/A
Path Parameter Description
user-id ID of the user to resend invitation.
curl -X POST \
  https://<<META.tenant.domain>>/api/v1/admin/users/<<user_id>>/resend_invitation \
  -H 'content-type: application/json' \
  -H 'x-user-email: <email-address>' \
  -H 'x-user-token: <api-token>'

Response

A successful request will return either an empty response or a message stating User already accepted invitation. both with a 200 status code.

Sample response

A successful request will return an empty response with a 200 status code.

A failed request will return a message with a 200 status code.

{
  "message": "User already accepted invitation."
}
Was this helpful?