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.

In Postman, each endpoint includes some response cases (HTTP: 200,422 …). So you can see result of work using different input client data.

Success case:

{
    "notification": null,
    "warning": null,
    "variables": null,
    "internalStatus": "000000",
    "response": {
        "tokens": {
            "accessTokenExpire": 1691239698,
            "accessToken": "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9...",
            "refreshToken": "def50200feed68034de136e533374d8ae9a728e2983..."
        }
    },
    "errors": null
}

Last updated

#20:

Change request updated