Re-send user invitation

POST /api/users/{id}/resend_invitation

Allows admins to re-send an invitation to a user with a new link to set their password.

Path parameters

  • id string Required

    The ID of the user to re-invite

Responses

  • 204

    No content

  • 401 application/json

    Unauthorized

    Hide response attribute Show response attribute object
    • error string

      Human readable version of the error status code

  • 403 application/json

    Forbidden

    Hide response attribute Show response attribute object
    • error string

      Human readable version of the error status code

  • 404 application/json

    Not found

    Hide response attribute Show response attribute object
    • error string

      Human readable version of the error status code

POST /api/users/{id}/resend_invitation
curl \
 --request POST 'http://localhost:4000/api/users/{id}/resend_invitation' \
 --header "Authorization: $API_KEY"
Response examples (401)
{
  "error": "Error Reason"
}
Response examples (401)
{
  "error": "Error Reason"
}
Response examples (403)
{
  "error": "Error Reason"
}
Response examples (403)
{
  "error": "Error Reason"
}
Response examples (404)
{
  "error": "Error Reason"
}
Response examples (404)
{
  "error": "Error Reason"
}