Skip to content

Refresh token​

POST
/users/refreshToken

Refresh the access token and refresh token that was retrieved during login.

Request Body​

application/json
JSON
{
"accessToken": "string",
"refreshToken": "string",
"refreshable": 0
}

Responses​

OK

application/json
JSON
{
"expiry": "string",
"refreshToken": "string",
"refreshTokenExpiry": "string",
"token": "string",
"userId": 0
}

Playground​

Body

Samples​

cURL
JavaScript
PHP
Python