Refresh Token

Get the access token using the refresh token. Get familiar with the API endpoint with request and response.

📘

Learn how to manage your access and refresh tokens here.

Request Schema

PropertyTypeDescription
grant_typestringMust be "refresh_token" to indicate token regeneration.
refresh_tokenstringThe existing refresh token used to generate a new access token.
client_idstringClient ID provided to you for authentication.
client_secretstringClient secret used to authenticate and validate the refresh request.

Response Schema

PropertyTypeDescription
access_tokenstringNewly generated access token.
token_typestringType of token issued (bearer).
expires_innumberAccess token validity duration (in seconds).
refresh_tokenstringNew refresh token issued to the user.
Language
Credentials
OAuth2
Click Try It! to start a request and see the response here!