Skip to content

Face

Login using facial recognition, allowing users to authenticate with their face. This provides a secure, passwordless login method with strong biometric verification.

Languages
Servers
Sandbox environment
https://api.sbx.transmitsecurity.io/cis
Production environment (US)
https://api.transmitsecurity.io/cis
Production environment (EU)
https://api.eu.transmitsecurity.io/cis
Production environment (CA)
https://api.ca.transmitsecurity.io/cis
Production environment (AU)
https://api.au.transmitsecurity.io/cis

Revoke my Face Authentication

Request

Unregisters the face authenticator of the currently logged-in user

Security
UserAccessToken
curl -i -X POST \
  https://api.sbx.transmitsecurity.io/cis/v1/users/me/face/revoke \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Revoked

Revoke Face Authentication

Request

Unregisters a user's face authenticator.

Required permissions: apps:delete, [appId]:delete, authenticators:delete.

Security
ClientAccessToken
Bodyapplication/jsonrequired
user_idstringrequired

ID of the user

curl -i -X POST \
  https://api.sbx.transmitsecurity.io/cis/v1/users/face/revoke \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "user_id": "string"
  }'

Responses

Revoked