The Access token expires in 24 hours by default. Before your access token has expired, you can use this API to issue a new Access token using your refresh token. The refresh token must be the same that you received in the Get Access token API.This will generate a new set of Access token and Refresh token for you. Save them securely in your application against the user. Everytime you refresh a token, you will have to use the latest set of access and refresh tokens.

Log in to see full request history

Example Response
After a successful call, the API will return a response similar to the below structure.

{ "access_token": "53fadd2d93caf1e539d8d031a13d63947d22e5a05c56b37571f78124b01800ca", "token_type": "Bearer", "expires_in": 86400, "refresh_token": "ffe5452e9f7bf811011950138d0f948a73d1d0d1b5b8b1556873687d716d9cd6", "scope": "locations orders menus", "created_at": 1665420513 }
Body Params
string
required

Client ID of the application

string
required

Client Secret of the application

string
required

Refresh Token received in the Get Access Token API

string
required
Defaults to refresh_token
Responses

Language
Click Try It! to start a request and see the response here! Or choose an example:
application/json