Skip to main content
DELETE
/
api
/
v1
/
auth
/
passkey
/
credentials
/
{credential_id}
Delete Passkey Credential
curl --request DELETE \
  --url https://api.example.com/api/v1/auth/passkey/credentials/{credential_id} \
  --header 'Authorization: Bearer <token>'
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.example.com/api/v1/auth/passkey/credentials/{credential_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.example.com/api/v1/auth/passkey/credentials/{credential_id}"

headers = {"Authorization": "Bearer <token>"}

response = requests.delete(url, headers=headers)

print(response.text)
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

credential_id
string
required

Response

200 - application/json

OK

message
string
required