Authenticate a client and retrieve the JWT token
- Mock serverhttps://api-docs.raipartners.com/_mock/apis/client-management-api-v1/auth/token
- Productionhttps://api.raipartners.com/client-management/auth/token
- Sandboxhttps://api.dev.raipartners.com/client-management/auth/token
curl -i -X POST \
https://api-docs.raipartners.com/_mock/apis/client-management-api-v1/auth/token \
-H 'API-Version: 1.0.0' \
-H 'Content-Type: application/json' \
-d '{
"client_id": "my-client-id",
"client_secret": "my-super-auth-secret"
}'The JWT token.
The token scope as a space delimited set of values.
Example:"read:user write:user"
Response
{ "scope": "read:user write:user", "access_token": "eyo.....", "expires_in": 300, "token_type": "Bearer", "not-before-policy": 0, "refresh_expires_in": 300 }