IPObtain new access and refresh tokens using a valid refresh token.
Token Rotation:
Refresh token to exchange for new tokens
The refresh token obtained during authentication or previous refresh
Success - Returns new access and refresh tokens (old refresh token is now invalid)
Successful authentication response containing JWT tokens
Type of token (always Bearer)
JWT access token for API authentication.
Use in Authorization header as: Bearer <access_token>
Token is valid for 4 hours
JWT refresh token for obtaining new access tokens. Store securely and use when access token expires.
Was this page helpful?