Auth: Refresh Access Token
API Reference: Refresh Token
Overview
When your access token expires (after 30 minutes), you can obtain a new one without re-authenticating by using the refresh token.
How It Works

- Send a POST request to
/api/v1/admin-accounts/oauth/refresh-token
with your refresh token in the request body. - Receive a new access token in the response.
- Replace the expired access token in your API requests with the new one.
Updated about 23 hours ago