POST
/
auth
/
oauth
/
refresh-token
curl --request POST \
  --url https://onboard-external-dev.api.nestcoin.io/auth/oauth/refresh-token \
  --header 'x-auth-token: <api-key>'
{
  "userId": "<string>",
  "accessToken": {
    "token": "<string>",
    "expiry": "2023-11-07T05:31:56Z"
  },
  "refreshToken": {
    "token": "<string>",
    "expiry": "2023-11-07T05:31:56Z"
  }
}

This endpoint allows users to refresh their expired or soon-to-expire access tokens using a valid refresh token. It returns a new access token without requiring the user to log in again.

Authorizations

x-auth-token
string
header
required

Response

200
application/json
Success
userId
string
required

Onboard unique User ID

accessToken
object
required
refreshToken
object
required