Skip to main content

Auth (1.0.0)

Download OpenAPI specification:Download

Authentication service for obtaining OAuth2 tokens using the client credentials flow.

Auth

Get an OAuth2 token

Obtain an access token using client credentials for API access.

Authorizations:
oauth2
Request Body schema: application/x-www-form-urlencoded
required
grant_type
required
string

OAuth2 grant type. Must be set to client_credentials.

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

Content type
application/json
{
  • "access_token": "string",
  • "token_type": "string",
  • "expires_in": 0
}