PATCH /api/interaction/profile

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/profile
application/json

Body Required

  • username string(regex)

    Format should match the following pattern: /^[A-Z_a-z]\w*$/.

  • email string(regex)

    Format should match the following pattern: /^\S+@\S+\.\S+$/.

  • phone string(regex)

    Format should match the following pattern: /^\d+$/.

  • connectorId string
  • password string

Responses

  • 204

    No Content

  • 400

    Bad Request

  • 404

    Not Found

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