Skip to content

Refresh token

POST
/users/refreshToken

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

Request Body

JSON
{
"accessToken": "string",
"refreshToken": "string",
"refreshable": 0
}

Responses

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

Samples

cURL
curl -X POST \
'http://localhost:8080/v2/users/refreshToken' \
 -H "Content-Type: application/json"
JavaScript
fetch('http://localhost:8080/v2/users/refreshToken', {method:'POST',headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?php
$url = 'http://localhost:8080/v2/users/refreshToken';
$method = 'POST';
$headers = [
    'Content-Type' => 'application/json',
];

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

$response = curl_exec($ch);
curl_close($ch);

echo $response;
?>
Python
import requests

url = 'http://localhost:8080/v2/users/refreshToken'

headers = {
    'Content-Type': 'application/json'
}

response = requests.post(url, headers=headers)
print(response.json())