POST
/
api
/
auth
/
refresh-token
curl --request POST \
  --url http://localhost/api/auth/refresh-token \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form setCookie=true
{
  "expires_at": "2023-11-07T05:31:56Z",
  "access_token": "<string>",
  "refresh_token": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

Response

200
*/*
Token successfully refreshed
expires_at
string
access_token
string
refresh_token
string