Bearer Token
in the request header.
Bearer Tokens
are temporary and can be created using the client_id
and client_secret
generated by your OAuth application.
There are two ways to exchange your client_id
and client_secret
for a valid Bearer Token
via the /o/token/
endpoint:
Bearer Token
Here on the DocsTry it ▶
.Authorization.username
field as your client_id
and the Authorization.password
field as your client_secret
and hitting Send
."access_token"
field. You can copy this token to be used as Bearer authentication in all of your requests. Bearer Tokens
expire after one hour.
Bearer Token
ProgrammaticallyBearer Token
into the Authorization
field of any endpoint. Auth tokens persist across your sesion.
After retrieiving a token from the Get API Access Token page, the field may auto fill with Basic <base64 encoded client_id:client_secret>
. Be sure to fully replace this with your Bearer
When
making any requests.
The field should read Bearer <your_bearer_token>
.