Refresh tokens
1. Get feature in Postman collection
2. Refresh tokens
Do refresh
Everything is easy in this step. You need send 1 field in body of request - refreshToken.
Success case:
{
"notification": null,
"warning": null,
"variables": null,
"internalStatus": "000000",
"response": {
"tokens": {
"accessTokenExpire": 1691239698,
"accessToken": "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9...",
"refreshToken": "def50200feed68034de136e533374d8ae9a728e2983..."
}
},
"errors": null
}
Last updated