v1

latestOpenAPI 3.0.02026-07-14201523.9 KB
Auth

Request access token

Request an access token using one of the supported OAuth2 grant types:

Client Credentials

  • HTTP Basic Auth, passing the Client ID and Client Secret as the username and password

  • application/x-www-form-urlencoded data, containing:

    • { grant_type: "client_credentials" }

Authorization Code

  • HTTP Basic Auth, passing the Client ID and Client Secret as the username and password

  • application/x-www-form-urlencoded data, containing:

    • { 
        grant_type: "authorization_code", 
        code: "eyJ0eXAi...." 
      }
      

Refresh Token

  • HTTP Basic Auth, passing the Client ID and Client Secret as the username and password

  • application/x-www-form-urlencoded data, containing:

    • { 
        grant_type: "refresh_token", 
        refresh_token: "eyJ0eXAi...." 
      }
      
post/v1/auth/token

Response

200

access_tokenstring
refresh_tokenstring
expires_ininteger
token_type'Bearer'
scopestring
All 20 operations