Delete an MFA verification

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

Delete an MFA verification, a logto-verification-id in header is required for checking sensitive permissions.

Path parameters

  • verificationId string Required

    The unique identifier of the verification.

Responses

  • 204

    The MFA verification was deleted successfully.

  • 400

    Bad Request

  • 401

    Unauthorized

  • 403

    Forbidden

DELETE /api/my-account/mfa-verifications/{verificationId}
curl \
 --request DELETE 'https://[tenant_id].logto.app/api/my-account/mfa-verifications/{verificationId}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"