cURL
curl --request POST \ --url https://api.provident.ae/v2/oauth2/token \ --header 'Content-Type: application/x-www-form-urlencoded'
{ "access_token": "<string>", "token_type": "Bearer", "expires_in": 3600, "scope": "<string>" }
Obtain an access token using client credentials grant type
OAuth2 grant type - must be "client_credentials"
client_credentials
"client_credentials"
OAuth2 client identifier
"your_client_id"
OAuth2 client secret
"your_client_secret"
Access token successfully generated
The access token
Token type
"Bearer"
Token expiration time in seconds
3600
Token scopes