v1

latestOpenAPI 3.0.32026-07-2613529376.3 KB
Authentication

Refresh Token

This endpoint creates a new access token using a refresh token.

Request Headers:

  • Content-Type: application/x-www-form-urlencoded
<Warning> **Important Notes:**
  • Refresh token duration is 600 seconds
  • Rate limit: 1 request per second
  • The IP of the client must be added to WB Allowlist </Warning>
post/oauth2/refresh_token

Response

Successful token refresh

Example response

{
  "data": {
    "access_token": "NTBLZJKYNZETNJFIZC0ZNGM1LWJMYTMTODBJYZRKNWE2NMRM",
    "expires_in": 300,
    "refresh_token": "ODZMNMRHM2ETMZQZZI01OTQYLWEWMZATNWQ0NDYZNJBMOWUW",
    "scope": "codes.apply,show.userinfo",
    "token_type": "Bearer"
  }
}