Skip to main content
POST
/
auth
/
token
/
refresh
Refresh applicant access token
curl --request POST \
  --url https://sgja-api.vohoangphuc.com/auth/token/refresh \
  --header 'Content-Type: application/json' \
  --data '
{
  "refreshToken": "<string>"
}
'
{
  "accessToken": "<string>",
  "tokenType": "<string>",
  "expiresIn": 123
}

Body

application/json
refreshToken
string
required

Response

Token refreshed

accessToken
string
tokenType
string
expiresIn
integer<int64>