A Balance
resource represents the current financial state of an Application
identified by the linked_to
query parameter.
It tracks the state of funds processed through the system, including amounts that are:
available_amount
for immediate use or disbursement.pending_amount
due to processing times, holds, or other constraints.posted_amount
, which reflects the total sum (including both available and pending funds).Retrieve a list of Balance
resources.
For details on how to query endpoints using the available parameters, see Query Parameters.
Finix-Version | string Default: 2018-01-01 Specify the API version of your request. For more details, see Versioning. Example: 2022-02-01 |
List of Balance
objects
Authentication information is missing or invalid
Forbidden
Object does not exist
Invalid field
curl "https://finix.sandbox-payments-api.com/balances?linked_to=APc9vhYcPsRuTSpKD9KpMtPe" \ -H "Finix-Version: 2022-02-01" \ -u USfdccsr1Z5iVbXDyYt7hjZZ:313636f3-fac2-45a7-bff7-a334b93e7bda
{- "_embedded": {
- "balances": [
- {
- "id": "balance_fGpy1FQQBjL5PUjNYUqmvG",
- "created_at": "2024-01-10T20:18:49.36Z",
- "updated_at": "2024-01-10T20:18:49.36Z",
- "available_amount": 890,
- "currency": "USD",
- "linked_to": "APc9vhYcPsRuTSpKD9KpMtPe",
- "linked_type": "APPLICATION",
- "pending_amount": 990,
- "posted_amount": 900,
- "tags": {
- "created_via": "SYSTEM",
- "description": "GemStones"
}, - "type": "DISBURSEMENT",
- "_links": {
}
}
]
}, - "_links": {
}, - "page": {
- "limit": 100,
- "next_cursor": "balance_fGpy1FQQBjL5PUjNYUqmvG"
}
}