Resend invitation message

POST /api/organization-invitations/{id}/message

Resend the invitation message to the invitee.

Path parameters

  • id string Required

    The unique identifier of the organization invitation.

application/json

Body Required

The message payload for the "OrganizationInvitation" template to use when sending the invitation via email.

Responses

  • The invitation message was resent successfully.

  • Bad Request

  • Unauthorized

  • Forbidden

POST /api/organization-invitations/{id}/message
curl \
 -X POST https://[tenant_id].logto.app/api/organization-invitations/{id}/message \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"code":"string","link":"string","key":"string"}'
Request examples
{
  "code": "string",
  "link": "string",
  "key": "string"
}