Auth (1.0.0)
Download OpenAPI specification:Download
Authentication service for obtaining OAuth2 tokens using the client credentials flow.
Get an OAuth2 token
Obtain an access token using client credentials for API access.
Authorizations:
oauth2
Request Body schema: application/x-www-form-urlencodedrequired
| grant_type required | string OAuth2 grant type. Must be set to |
| client_id required | string Client ID provided by the API provider. |
| client_secret required | string Client Secret associated with the Client ID. |
Responses
Response samples
- 200
- 400
Content type
application/json
{- "access_token": "string",
- "token_type": "string",
- "expires_in": 0
}