Overview
DELETE/account/mfa/totpmfa

Remove the enrolled authenticator

Delete a record from totp.

Auth: bearerAuth — calls run as the authenticated user.

Responses
204

removed

No response body.

401

Error

  • erroroptionalobject
Example
{
  "error": {
    "message": "string",
    "code": "string"
  }
}
Code examples
cURL
curl -X DELETE "https://api.agenticdeveloperhub.com/account/mfa/totp" \
  -H "Authorization: Bearer YOUR_TOKEN"
JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/account/mfa/totp", {
  method: "DELETE",
  headers: {
    "Authorization": "Bearer YOUR_TOKEN"
  },
});
const data = await res.json();