Our Balance Transfers
API provides platforms the option to create a money movement between their FBO (For the Benefit Of) Settlement
account and their operating account. This is only available for Finix Core customers with Litle V12 credentials.
If you have any questions, please reach out to your Finix point of contact or contact Finix Support.
Create a balance_transfer
.
Single balance_transfer object
The server understood the request but could not process it.
Authentication information is missing or invalid
Forbidden
Not Acceptable
curl "https://finix.sandbox-payments-api.com/balance_transfers" \ -H "Content-Type: application/json" \ -H "Finix-Version: 2022-02-01" \ -u USfdccsr1Z5iVbXDyYt7hjZZ:313636f3-fac2-45a7-bff7-a334b93e7bda \ -X POST \ -d ' { "amount": 4000, "currency": "USD", "description": "Need to increase buffer given the high number of NSFs on merchant fee debits", "destination": "FOR_BENEFIT_OF_ACCOUNT", "processor_type": "LITLE_V1", "source": "OPERATING_ACCOUNT", "tags": { "example": "documentation tag" } }'
{- "id": "BT_4YdC9qnydbtWEDi88quEmC",
- "created_at": "2025-02-10T21:29:35.90Z",
- "updated_at": "2025-02-10T21:29:37.07Z",
- "amount": 4000,
- "currency": "USD",
- "description": "Need to increase buffer given the high number of NSFs on merchant fee debits",
- "destination": "FOR_BENEFIT_OF_ACCOUNT",
- "external_reference_id": "83996111534053357",
- "processor_type": "LITLE_V1",
- "reference_id": "FNXdY7HS91NQZryp8SgVFBwMR",
- "source": "OPERATING_ACCOUNT",
- "state": "SUCCEEDED",
- "tags": {
- "example": "documentation tag"
}, - "_links": {
}
}
Retrieve a list of all Balance Transfer
objects.
For details on how to query endpoints using the available parameters, see Query Parameters.
List of balance_transfer objects
The server understood the request but could not process it.
Authentication information is missing or invalid
Forbidden
Not Found
Not Acceptable
curl "https://finix.sandbox-payments-api.com/balance_transfers/" \ -H "Finix-Version: 2022-02-01" \ -u USfdccsr1Z5iVbXDyYt7hjZZ:313636f3-fac2-45a7-bff7-a334b93e7bda
{- "_embedded": {
- "balance_transfers": [
- {
- "id": "BT_4YdC9qnydbtWEDi88quEmC",
- "created_at": "2025-02-10T21:29:35.90Z",
- "updated_at": "2025-02-10T21:29:37.07Z",
- "amount": 4000,
- "currency": "USD",
- "description": "Need to increase buffer given the high number of NSFs on merchant fee debits",
- "destination": "FOR_BENEFIT_OF_ACCOUNT",
- "external_reference_id": "83996111534053357",
- "processor_type": "LITLE_V1",
- "reference_id": "FNXdY7HS91NQZryp8SgVFBwMR",
- "source": "OPERATING_ACCOUNT",
- "state": "SUCCEEDED",
- "tags": {
- "example": "documentation tag"
}, - "_links": {
}
}, - {
- "id": "BT_g3x4REBbV7yoe8N92CH8eP",
- "created_at": "2025-02-08T18:49:50.25Z",
- "updated_at": "2025-02-08T18:49:51.42Z",
- "amount": 4000,
- "currency": "USD",
- "description": "Need to increase buffer given the high number of NSFs on merchant fee debits",
- "destination": "FOR_BENEFIT_OF_ACCOUNT",
- "external_reference_id": "84084058155587752",
- "processor_type": "LITLE_V1",
- "reference_id": "FNXjktdjssp6N9edfMW6agYax",
- "source": "OPERATING_ACCOUNT",
- "state": "SUCCEEDED",
- "tags": {
- "example": "documentation tag"
}, - "_links": {
}
}
]
}, - "_links": {
}, - "page": {
- "offset": 0,
- "limit": 20,
- "count": 3200
}
}
Retrieve the details of a balance_transfer
.
Single balance_transfer object
Authentication information is missing or invalid
Forbidden
Object does not exist
Not Acceptable
curl "https://finix.sandbox-payments-api.com/balance_transfers/BT_9SLA5BdQs6Z3xFpmjUoqhM" \ -H "Finix-Version: 2022-02-01" \ -u USfdccsr1Z5iVbXDyYt7hjZZ:313636f3-fac2-45a7-bff7-a334b93e7bda
{- "id": "BT_4YdC9qnydbtWEDi88quEmC",
- "created_at": "2025-02-10T21:29:35.90Z",
- "updated_at": "2025-02-10T21:29:37.07Z",
- "amount": 4000,
- "currency": "USD",
- "description": "Need to increase buffer given the high number of NSFs on merchant fee debits",
- "destination": "FOR_BENEFIT_OF_ACCOUNT",
- "external_reference_id": "83996111534053357",
- "processor_type": "LITLE_V1",
- "reference_id": "FNXdY7HS91NQZryp8SgVFBwMR",
- "source": "OPERATING_ACCOUNT",
- "state": "SUCCEEDED",
- "tags": {
- "example": "documentation tag"
}, - "_links": {
}
}