Auth

Refreshes the access token using the current access token

PATCH
/api/v1/auth/refresh
/api/v1/auth/refresh

The Authorization access token

Authorization

Authorization
Required
<token>

Please enter a valid access token

In: header

Request Body

application/jsonOptional

The current access token

tokenStringstring | null

curl -X PATCH "https://example.com/api/v1/auth/refresh" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "tokenString": null
  }'

OK