PATCH /api/interaction/identifiers

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://bump.sh/logto/doc/logto-experience-api/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Logto Experience API MCP server": {
  "url": "https://bump.sh/logto/doc/logto-experience-api/mcp"
}
Close
PATCH /api/interaction/identifiers
application/json

Body object Required

One of:

Responses

  • 204

    No Content

  • 400

    Bad Request

  • 401

    Unauthorized

  • 404

    Not Found

  • 422

    Unprocessable Content

PATCH /api/interaction/identifiers
curl \
 --request PATCH 'https://[tenant_id].logto.app/api/interaction/identifiers' \
 --header "Content-Type: application/json" \
 --data '{"username":"string","password":"string"}'
Request examples
{
  "username": "string",
  "password": "string"
}
{
  "email": "string",
  "password": "string"
}
{
  "phone": "string",
  "password": "string"
}
{
  "email": "string",
  "verificationCode": "string"
}
{
  "phone": "string",
  "verificationCode": "string"
}
{
  "connectorId": "string",
  "connectorData": {}
}
{
  "connectorId": "string",
  "email": "string"
}
{
  "connectorId": "string",
  "phone": "string"
}