curl -X POST "https://api.usegately.com/api/v1/auth/refresh" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "refresh_token": "your_refresh_token" }'
{ "access_token": "eyJhbGciOiJIUzI1NiIs...", "expires_in": 3600 }
Refresh an expired access token
Was this page helpful?