01 Get access token
Authentication
Bearer authentication of the form Bearer <token>, where token is your auth token.
Bearer authentication of the form Bearer <token>, where token is your auth token.
Exchanges your OAuth client credentials for a bearer token. Every other request in this collection needs it.
grant_type is forced to client_credentials server-side, so you never send it, and no refresh token is issued. Ask for a new token when the old one expires.
Request — send client_id and client_secret. Form encoding, JSON and query parameters all work.
Response — this endpoint is the one exception to the standard envelope. It returns the raw OAuth payload with no message / status / responseTime wrapper:
Send it on every subsequent call as Authorization: Bearer <access_token>. The collection does this for you via the {{token}} variable, which the test script on this request sets automatically.
Token lifetime is one year (expires_in: 31536000). Every call mints an additional token and revokes nothing, so cache the token rather than requesting one per API call.