Refresh Access Token

Refresh Access Token

Refreshes access token from refresh token.

Request
URI
POST
https://{api_host}/rest/refresh
COPY
Request Body
RefreshToken of type(s) application/json
Required
{
    "refresh_token": "<jwt.refresh.token>"
}
string
refresh_token
Required

Refresh Token to be used to get a new Access token.

Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns AccessToken of type(s) */*
"AccessToken Object"
string
access_token
Required

Access Token to be used in API calls.


400

Bad Request

Operation doesn't return any data structure

500

Internal Server Error

Operation doesn't return any data structure

Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"refresh_token:"string"}' https://{api_host}/rest/refresh