v1
latestOpenAPI 3.0.12026-08-0621301.7 MBOauth
Refreshing the tokens
The access_token has a lifetime. After a period of time, which was returned to you in expires_in JSON property, the access_token will be invalid, and you can no longer use it to get data from our API. To refresh the access_token, you must use the refresh_token.
post/oauth/token/
Headers
Authorizationstring required
Base 64 encoded string containing the client_id and client_secret values. The header value should be Basic <base64(client_id:client_secret)>.
Response
Returns user Oauth2 tokens.