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

  1. Send a POST request to /api/v1/admin-accounts/oauth/refresh-token with your refresh token in the request body.
  2. Receive a new access token in the response.
  3. Replace the expired access token in your API requests with the new one.