A Balance Adjustment
modifies the account Balance
by adding funds (a 'top-up') or reducing funds for Payouts. Each adjustment is linked to a specific payment rail (e.g., ACH, card, wire).
Create a Balance Adjustment
to increase (i.e., 'Top-up') or decrease your account balance for Payouts.
Finix-Version | string Default: 2018-01-01 Specify the API version of your request. For more details, see Versioning. Example: 2022-02-01 |
Response examples for a request to create a Balance Adjustment
.
Authentication information is missing or invalid
Forbidden
Object does not exist
Invalid field
{- "id": "balance_adjustment_jfR7V18CMWaGBmRYAto8Lw",
- "created_at": "2024-05-22T17:13:15.810963Z",
- "updated_at": "2024-05-22T17:13:16.05664Z",
- "amount": 66,
- "balance_entry_id": "balance_entry_4Zsrw3ccS64vjpzZmNMdUi",
- "currency": "USD",
- "failure_code": null,
- "failure_message": null,
- "description": "Sample Balance Adjustment",
- "rail": "ACH",
- "instrument_id": "PIwyL8J2KRu8qnvGF7EDeviQ",
- "state": "SUCCEEDED",
- "type": "TOP_UP",
- "tags": {
- "name": "create a balance adjustment"
}, - "trace_id": "872d2e13-2e56-47b6-94a3-64ec06a1f982",
- "_links": {
}
}
Retrieve a list of Balance Adjustment
resources for an Application
.
Only ROLE_PARTNER
or ROLE_PLATFORM
credentials can be used to retrieve Balance Adjustment
objects.
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 Adjustment
objects
Authentication information is missing or invalid
Forbidden
Object does not exist
Invalid field
curl "https://finix.sandbox-payments-api.com/balance_adjustments" \ -H "Finix-Version: 2022-02-01" \ -u USfdccsr1Z5iVbXDyYt7hjZZ:313636f3-fac2-45a7-bff7-a334b93e7bda
{- "_embedded": {
- "balance_adjustments": [
- {
- "id": "balance_adjustment_jfR7V18CMWaGBmRYAto8Lw",
- "created_at": "2024-05-22T17:13:15.810963Z",
- "updated_at": "2024-05-22T17:13:16.05664Z",
- "amount": 66,
- "balance_entry_id": "balance_entry_4Zsrw3ccS64vjpzZmNMdUi",
- "currency": "USD",
- "failure_code": null,
- "failure_message": null,
- "description": "balance_adjustment testing",
- "rail": "ACH",
- "instrument_id": "PIwyL8J2KRu8qnvGF7EDeviQ",
- "state": "SUCCEEDED",
- "type": "TOP_UP",
- "tags": {
- "name": "Sample Balance Adjustment"
}, - "trace_id": "872d2e13-2e56-47b6-94a3-64ec06a1f982",
- "_links": {
}
}, - {
- "id": "balance_adjustment_nvc873btpDtA7KbPySdCny",
- "created_at": "2024-05-22T17:13:15.810963Z",
- "updated_at": "2024-05-22T17:13:16.05664Z",
- "amount": 66,
- "balance_entry_id": "balance_entry_4Zsrw3ccS64vjpzZmNMdUi",
- "currency": "USD",
- "failure_code": null,
- "failure_message": null,
- "description": "balance_adjustment testing",
- "rail": "ACH",
- "instrument_id": "PIwyL8J2KRu8qnvGF7EDeviQ",
- "state": "SUCCEEDED",
- "type": "TOP_UP",
- "tags": {
- "name": "Sample Balance Adjustment"
}, - "trace_id": "872d2e13-2e56-47b6-94a3-64ec06a1f982",
- "_links": {
}
}
]
}, - "page": {
- "limit": 100,
- "next_cursor": "balance_adjustment_nvc873btpDtA7KbPySdCny"
}
}