cURL
curl --request POST \ --url https://sandbox.sturdytechnologies.com/v3/auth/token \ --header 'Content-Type: application/x-www-form-urlencoded' \ --data grant_type=client_credentials \ --data 'scope=card,us_account'
{ "data": { "access_token": "<string>", "expires_in_seconds": 123, "scope": "card,us_account", "token_type": "<string>" }, "message": "<string>", "success": true }
Get Bearer Token for Access to API services. Use Basic Authentication with client_id as username and client_secret as password.
OAuth grant type (e.g. client_credentials)
"client_credentials"
Requested scopes (space-separated)
"card,us_account"
OK
Show child attributes