Skip to main content
POST
/
token
/
refresh
Refresh Token
curl --request POST \
  --url https://openapi.octoparse.com/token/refresh \
  --header 'Content-Type: application/json' \
  --data '
{
  "refresh_token": "<string>",
  "grant_type": "refresh_token"
}
'
{
  "data": {
    "access_token": "<string>",
    "expires_in": 123,
    "token_type": "<string>",
    "refresh_token": "<string>"
  },
  "requestId": "<string>"
}

Body

application/json
refresh_token
string
required

The refresh token from the original token response

grant_type
string
required

Must be refresh_token

Example:

"refresh_token"

Response

200 - application/json

Token refreshed successfully

data
object
requestId
string