コンテンツにスキップ

Delete Passkey.

DELETE
/api/admin/me/passkeys/{id}
Code sample: Shell / cURL
curl --request DELETE \
--url https://auth.example.com/api/admin/me/passkeys/example \
--header 'Authorization: Bearer <token>'

Delete Passkey in the Admin Passkeys area. The operation changes tenant state and should be protected by the documented admin authorization and audit controls.

id
required
string

Passkey delete result.

Media type application/json
object
success
required
boolean
message
required
string
Example
{
"success": true,
"message": "Passkey deleted successfully"
}

Error response.

Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{
"error": "example",
"message": "example",
"error_description": "example"
}