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

  • 204

    The invitation message was resent successfully.

  • 400

    Bad Request

  • 401

    Unauthorized

  • 403

    Forbidden

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