Renew Access Token
Authentication
Bearer authentication of the form Bearer <token>, where token is your auth token.
Response
Non-empty if the request failed
Bearer authentication of the form Bearer <token>, where token is your auth token.
Non-empty if the request failed
Available to: All authenticated users
Environments: Demo, Live
Rate Limit: 15 requests per hour, 15-second back-off, counts all requests
Extends the lifetime of your current access token without creating a new session. Send your existing, non-expired token with the Bearer scheme; the response returns a fresh accessToken and expirationTime.
Use renewal in long-running applications so you don’t start a new session unless it’s absolutely necessary. Repeatedly calling accessTokenRequest starts new sessions, and because you’re limited to two concurrent sessions per user, that can drop dependent services that share a token. Call renewal about 15 minutes before the current token expires. See Authentication & Access for session details.
Common Failure Scenarios
Authorization header is missing or malformed (returns HTTP 401).Error Messages