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
Error
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 USsRhsHYZGBPnQw8CByJyEQW:8a14c2f9-d94b-4c72-8f5c-a62908e5b30e \ -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_9SLA5BdQs6Z3xFpmjUoqhM",
- "created_at": "2022-08-18T06:37:50.67Z",
- "updated_at": "2022-08-18T06:37:51.09Z",
- "amount": 101,
- "currency": "USD",
- "description": "setup balance transfer for testing",
- "destination": "OPERATING_ACCOUNT",
- "external_reference_id": "84077657260162531",
- "processor_type": "LITLE_V1",
- "reference_id": "FNX5ZJEGdPT5odwtRrvxVrYUn",
- "source": "FOR_BENEFIT_OF_ACCOUNT",
- "state": "SUCCEEDED",
- "tags": {
- "test_key_101": "test_val_101"
}, - "_links": {
}
}
Retrieve a list of all balance_transfers
.
For details on how to query endpoints using the available parameters, see Query Parameters.
List of balance_transfer objects
Error
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 USbkjk46XqUTQHN3i2jaVnc1:ac915962-2757-49ea-aeee-10960a408b99
{- "_embedded": {
- "balance_transfers": [
- {
- "id": "BT_jXhKj7AcdQXvCANFfuowWa",
- "created_at": "2022-10-10T08:07:35.69Z",
- "updated_at": "2022-10-10T08:07:35.92Z",
- "amount": 22725,
- "currency": "USD",
- "description": "Test Balance Transfer",
- "destination": "FOR_BENEFIT_OF_ACCOUNT",
- "external_reference_id": "84078027639024193",
- "processor_type": "LITLE_V1",
- "reference_id": "FNXBHeZiCJ4C4HcgpVGT5sdb",
- "source": "OPERATING_ACCOUNT",
- "state": "SUCCEEDED",
- "tags": null,
- "_links": {
}
}, - {
- "id": "BT_qk8PK15fMsoXjZ1dP9YSwf",
- "created_at": "2022-09-28T18:10:01.36Z",
- "updated_at": "2022-09-28T18:10:01.77Z",
- "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": "83989994584237171",
- "processor_type": "LITLE_V1",
- "reference_id": "FNXbECrND95wKrBh61D3Lrq7n",
- "source": "OPERATING_ACCOUNT",
- "state": "SUCCEEDED",
- "tags": {
- "example": "documentation tag"
}, - "_links": {
}
}
]
}, - "_links": {
}, - "page": {
- "offset": 0,
- "limit": 20,
- "count": 1286
}
}
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 USbkjk46XqUTQHN3i2jaVnc1:ac915962-2757-49ea-aeee-10960a408b99
{- "id": "BT_9SLA5BdQs6Z3xFpmjUoqhM",
- "created_at": "2022-08-18T06:37:50.67Z",
- "updated_at": "2022-08-18T06:37:51.09Z",
- "amount": 101,
- "currency": "USD",
- "description": "setup balance transfer for testing",
- "destination": "OPERATING_ACCOUNT",
- "external_reference_id": "84077657260162531",
- "processor_type": "LITLE_V1",
- "reference_id": "FNX5ZJEGdPT5odwtRrvxVrYUn",
- "source": "FOR_BENEFIT_OF_ACCOUNT",
- "state": "SUCCEEDED",
- "tags": {
- "test_key_101": "test_val_101"
}, - "_links": {
}
}