refresh_token
grant type is used by clients to exchange a refresh token for an expired access token.refresh_token
grant type to refresh a customer's access token with a "remember me" option. Webapp applications can use the refresh_token
grant type to refresh the access token skipping the authorization code step.refresh_token
grant type, send a POST
request to the /oauth/token
endpoint, passing the application credentials in the request body.string
refresh_token
string
refresh_token
string
client_id
string
200 OK
status code, returning the requested access token and customer info:200 OK
status code, returning the requested access token and customer info:POST
request to the /oauth/revoke
endpoint, passing the required parameters in the request body.string
client_id
string
refresh_token
200 OK
status code, returning an empty object.