SwiftGoma.SwiftGoma

Search endpoints

Jump to any API endpoint by name, method, or path

Passkeys

Remove a passkey

DELETE/api/v1/auth/passkey/:passkeyId

Removes a passkey from the signed-in account.

Requires Authorization
Session

Path parameters

passkeyIdstringrequired
ID of the passkey to remove.
Request
curl --request DELETE \
  --url https://api.swiftgoma.com/api/v1/auth/passkey/:passkeyId \
  --header 'Authorization: Bearer <access_token>'
200Example response
{
  "success": true,
  "data": {
    "deleted": true
  }
}