Resend invitation

Description

Resend platform invitation to specified user.

Request

HTTP Method: POST

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 'Authorization: Bearer <<CREDENTIAL.tines_api_key>>'

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

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