Client identifier
Authorization
Obtain client access tokens for API authorization when needed (see Authentication). Click Try it from the API explorer below to generate access tokens directly from the docs. You can then use these tokens to run API requests in this API reference.
Download OpenAPI description
Overview
Languages
Servers
Sandbox environment
https://api.sbx.transmitsecurity.io/
Production environment (US)
https://api.transmitsecurity.io/
Production environment (EU)
https://api.eu.transmitsecurity.io/
Production environment (CA)
https://api.ca.transmitsecurity.io/
Production environment (AU)
https://api.au.transmitsecurity.io/
Bodyapplication/x-www-form-urlencodedrequired
One of:
Should be set to client_credentials.
Value"client_credentials"
Example: "client_credentials"
- Sandbox environmenthttps://api.sbx.transmitsecurity.io/oidc/token
- Production environment (US)https://api.transmitsecurity.io/oidc/token
- Production environment (EU)https://api.eu.transmitsecurity.io/oidc/token
- Production environment (CA)https://api.ca.transmitsecurity.io/oidc/token
- Production environment (AU)https://api.au.transmitsecurity.io/oidc/token
- cURL
- Node.js
- Go
- JavaScript
- Java
- Python
curl -i -X POST \
https://api.sbx.transmitsecurity.io/oidc/token \
-H 'Content-Type: application/x-www-form-urlencoded' \
-d client_id=YOUR_CLIENT_ID \
-d client_secret=YOUR_CLIENT_SECRET \
-d grant_type=client_credentials \
-d resource=https://verify.identity.securityResponse
application/json
{ "access_token": "string", "token_type": "Bearer", "expires_in": 3600, "scope": "string" }