POST /api/interaction/bind-mfa

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
POST /api/interaction/bind-mfa
application/json

Body object Required

One of:

Responses

  • 204

    No Content

  • 400

    Bad Request

  • 401

    Unauthorized

  • 404

    Not Found

  • 422

    Unprocessable Content

POST /api/interaction/bind-mfa
curl \
 --request POST 'https://[tenant_id].logto.app/api/interaction/bind-mfa' \
 --header "Content-Type: application/json" \
 --data '{"type":"string","code":"string"}'
Request examples
{
  "type": "string",
  "code": "string"
}
{
  "type": "string",
  "id": "string",
  "rawId": "string",
  "response": {
    "clientDataJSON": "string",
    "attestationObject": "string",
    "authenticatorData": "string",
    "transports": [
      "usb"
    ],
    "publicKeyAlgorithm": 42.0,
    "publicKey": "string"
  },
  "authenticatorAttachment": "cross-platform",
  "clientExtensionResults": {
    "appid": true,
    "crepProps": {
      "rk": true
    },
    "hmacCreateSecret": true
  }
}
{
  "type": "string"
}