PUT /api/interaction/event

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
PUT /api/interaction/event
application/json

Body Required

  • event string Required

    Values are SignIn, Register, or ForgotPassword.

Responses

  • 204

    No Content

  • 400

    Bad Request

  • 403

    Forbidden

  • 404

    Not Found

PUT /api/interaction/event
curl \
 --request PUT 'https://[tenant_id].logto.app/api/interaction/event' \
 --header "Content-Type: application/json" \
 --data '{"event":"SignIn"}'
Request examples
{
  "event": "SignIn"
}