Skip to main content
You can refresh an accessToken received from the exchange of the authorization code To refresh an access token, make a request to /token/refresh with the following query params: Additionally, set an Authorization header that is a base64 encoded string that is a combination of your client_id:app_secret. This is a Basic auth header, and so should follow the following format: Authorization: Basic <base64 encoded CLIENT_ID:CLIENT_SECRET> For example, if your client_id is abc123 and your client_secret from the OAuth configuration is def456, the base64 encoded value would be YWJjMTIzOmRlZjQ1Ng==. The client_id and client_secret can be found in the Overview tab of the Configure OAuth App. Here is an example cURL command:
The response will include: Here is an example of a full response: