Refresh bearer tokens
Refresh bearer token pair using refresh token in request body
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Refresh token request
Response Body
application/json
curl -X POST "https://example.com/auth/session/refresh/token" \ -H "Content-Type: application/json" \ -d '{ "refreshToken": "string" }'{ "accessToken": "string", "refreshToken": "string", "tokenType": "Bearer", "expiresIn": 1}