Authentication

Refresh access token

A unexpired refresh token must be used. Returns a new access token and refresh token.

POST
/auth/refresh
access_tokenAccess Token
refresh_tokenRefresh Token

Response Body

Examples

curl -X POST "https://loading/auth/refresh" \
  -H "Content-Type: application/json" \
  -d '{
    "access_token": "string",
    "refresh_token": "string"
  }'
{
  "expiration_date": "string",
  "refresh_expiration": "string",
  "refresh_token": "string",
  "token": "string"
}
Empty