POST
/
auth
/
token
/
refresh
cURL
curl --request POST \
  --url https://api.nh.staging.mum.juspay.net/service2/auth/token/refresh \
  --header 'Content-Type: application/json' \
  --data '
{
  "refresh_token": "<string>"
}
'
{
  "access_token": "<string>",
  "access_token_expires_at": 123,
  "refresh_token": "<string>",
  "refresh_token_expires_at": 123,
  "success": true
}

Body

application/json
refresh_token
string
required

Response

Tokens refreshed successfully

access_token
string
required
access_token_expires_at
integer<int64>
required
refresh_token
string
required
refresh_token_expires_at
integer<int64>
required
success
boolean
required