Nest Authbeta

DELETE /auth/mfa/devices/{deviceId}

Remove a registered MFA device

Remove a registered MFA device

DELETE/auth/mfa/devices/{deviceId}

Path parameters

NameTypeRequiredDescription
deviceIdstringrequired

Responses

200

NestAuthMfaDeviceRemovedResponseDto

FieldTypeRequiredDescription
messagestringrequiredResponse message
Example: Device removed successfully

Example response

{
  "message": "Device removed successfully"
}

Try it

curl -X DELETE 'https://api.example.com/auth/mfa/devices/{deviceId}' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'

On this page