Skip to main content
POST
/
cabinet
/
auth
/
refresh
Refresh Token
curl --request POST \
  --url http://localhost:8080/cabinet/auth/refresh \
  --header 'Content-Type: application/json' \
  --data '
{
  "refresh_token": "<string>"
}
'
{
  "access_token": "<string>",
  "refresh_token": "<string>",
  "expires_in": 123,
  "token_type": "bearer"
}

Body

application/json

Request to refresh access token.

refresh_token
string
required

Refresh token

Response

Successful Response

Token pair response.

access_token
string
required
refresh_token
string
required
expires_in
integer
required

Access token expiration in seconds

token_type
string
default:bearer