Resend invitation message

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://openapi.logto.io/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Logto API references MCP server": {
  "url": "https://openapi.logto.io/mcp"
}
Close
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.

  • code string
  • locale string
  • uiLocales string

Responses

  • 204

    The invitation message was resent successfully.

  • 400

    Bad Request

  • 401

    Unauthorized

  • 403

    Forbidden

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