Retrieve an access token to authorize your API request. By default, the access token is valid for 1 hour, you don't need to regenerate it every time before calling Mosaic APIs.
NOTE: The request type and examples depend on the service you choose
One of:
Grant type must be client_credentials.
Value:"client_credentials"
Example:"client_credentials"
- Sandbox environmenthttps://api.sbx.transmitsecurity.io/oidc/token
- US production environmenthttps://api.transmitsecurity.io/oidc/token
- EU production environmenthttps://api.eu.transmitsecurity.io/oidc/token
- CA production environmenthttps://api.ca.transmitsecurity.io/oidc/token
- AU production environmenthttps://api.au.transmitsecurity.io/oidc/token
- JP production environmenthttps://api.gasne1-ts01.transmitsecurity.io/oidc/token
- Default
- Identity Verification only
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_credentialsAccess token successfully retrieved
Response
{ "access_token": "string", "token_type": "Bearer", "expires_in": 3600, "scope": "string" }