API Documentation

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...." 
      }
      
Language
Credentials
Basic
base64
:
Click Try It! to start a request and see the response here!