Update a MFA verification name

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
PATCH /api/my-account/mfa-verifications/{verificationId}/name

Update a MFA verification name, a logto-verification-id in header is required for checking sensitive permissions. Only WebAuthn is supported for now.

Path parameters

  • verificationId string Required

    The unique identifier of the verification.

application/json

Body Required

  • name string Required

    The name of the MFA verification.

Responses

  • 200 application/json

    The MFA verification name was updated successfully.

  • 400

    Bad Request

  • 401

    Unauthorized

  • 403

    Forbidden

PATCH /api/my-account/mfa-verifications/{verificationId}/name
curl \
 --request PATCH 'https://[tenant_id].logto.app/api/my-account/mfa-verifications/{verificationId}/name' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"name":"string"}'
Request examples
{
  "name": "string"
}