v1

latestOpenAPI 3.1.02026-07-249025.5 KB

Refresh Token

Get the access token using the refresh token. Get familiar with the API endpoint with request and response.

post/v1/oauth/token/user

Request body

grant_typestring
refresh_tokenstring
client_idstring
client_secretstring

Response

200

access_tokenstring
token_typestring
expires_ininteger
refresh_tokenstring

Example response

{
  "access_token": "eysdkhsdbjbdfsNvbnRlbnQiOnsiaXNzdWVkRm9yIjoiRnJlc2h3b3JrcyIsInNjb3BlIjoiIiwiaXNzdWVkQXQiOjE1NTk4MDQ1NTAxMzYsImV4cGlyZXNBdCI6IjIwMTktMDctMDZUMDc6MDI6MzAuMTM2WiIsInRva2VuX3R5cGUiOiJDT01QQU5ZIn0sImFfdCI6ImY3ZWM1MWMyYmE0ZGNmNzY2ZWE0ZDExMTI3ZjEzZjQzZjAwZmNhsdjhfbsfdjblfs",
  "token_type": "bearer",
  "expires_in": 2592000,
  "refresh_token": "sdff064be187f42e9238122ef9d7a985c8800dff3752"
}