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

Body

application/json
refresh_token
string
required

Response

Successful Response

access_token
string
required
expire_days
integer
required
refresh_token
string | null