client_id and client_secret to the Token EndpointX-API-KEYclient_secret/auth/token endpoint using your API credentials.Authorization: Bearer access_token| Item | Value |
|---|---|
| URL | POST /v1/auth/token |
| Authentication | client_id + client_secret |
| Token Type | Bearer |
| Expires In | Defined by system configuration (e.g. 3600 seconds) |
{
"access_token": "vrtx_at_93bf2d181ab",
"expires_in": 3600,
"token_type": "Bearer"
}scope parameter.| Function | Read | Write |
|---|---|---|
| Fetch Data | βοΈ | βοΈ |
| Create / Update | β | βοΈ |
| Financial Operations | β | βοΈ |
| Use Case | Recommended Scope |
|---|---|
| Dashboards / Reporting / Analytics | closedloop.read |
| Operational systems (wallet funding, payouts, cards) | closedloop.write |
| Full backend integration in production | closedloop.read closedloop.write |
| Third-party integrations | Least privilege (read only unless necessary) |