API Documentation
/OAuth2 token
OAuth2 token API
POST /oauth/token
Generates OAuth2 Bearer access token required for other API calls. When token expires, new one need to be generated. Store the token and re-use it to avoid unnecessary calls and rejecting the requests.
params
grant_type
:"client_credentials"
client_id
:License client id
- Secret user receive in email when purchase a license.client_secret
:License client secret
- Secret user receive in email when purchase a license.
response
- status code
200
{
"token_type":"Bearer",
"expires_in":72000,
"access_token":"long-access-token-string"
}