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/vnd.api+json" \ -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 balance_transfers
.
limit | integer The numbers of items to return. Example: limit=10 |
offset | integer The number of items to skip before starting to collect the result set. Example: offset=20 |
pageNumber | integer The page number to list. |
pageSize | integer The size of the page. |
created_at.gte | string Filter where Example: created_at.gte=2022-09-27T11:21:23 |
created_at.lte | string Filter where Example: created_at.lte=2022-09-27T11:21:23 |
updated_at.gte | string Filter where |
updated_at.lte | string Filter where |
idempotency_id | string Filter by |
amount | integer Filter by an amount equal to the given value. |
description | string Filter by the |
destination | string Filter by the |
external_reference_id | string Filter by the value saved in |
reference_id | string Filter by the value saved in |
source | string Filter by the |
tags.key | string Filter by the |
tags.value | string Filter by the value of a |
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 "Content-Type: application/vnd.api+json" \ -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 "Content-Type: application/vnd.api+json" \ -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": {
}
}