Batch
Create an Intrabank Batch
Getting Started
Person
Business
Documents Person
Document Business
Member
Accounts
Contacts
Send
- GETList all Intrabank Push
- POSTSend an Intrabank Push
- GETGet an Intrabank Push
- PATCHUpdate an Intrabank Push
- GETList all ACH Push
- POSTSend an ACH Push
- GETGet an ACH Push
- PATCHUpdate an ACH Push
- GETList all Wire Sent
- POSTSend an Wire Transfer
- GETGet an Wire Transfer
- PATCHUpdate an Wire Transfer
- GETList all Check Sent
- POSTSend an Check
- GETGet an Check Sent
- PATCHUpdate an Check Sent
Receive
Cards
Webhooks
Program
Help Desk
Batch
Create an Intrabank Batch
Use this API to create a payout from an account.
Below fields are mandatory
{
"accountId": "{{accountId}}",
"contactId": "{{contactId}}",
"amount": "200"
}
status field in response can have below values.
- declined
- settled
POST
/
v1
/
batch
/
intrabank
curl --request POST \
--url https://qa-api.sbx.solidfi.com/v1/batch/intrabank \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"data": [
{
"accountId": "{{accountId}}",
"amount": "25.00",
"api": "send",
"contactId": "{{contactId}}",
"description": "Funding",
"sequence": "1",
"title": "Batch intrabank 1"
},
{
"accountId": "{{accountId}}",
"amount": "25.00",
"api": "receive",
"contactId": "{{contactId}}",
"description": "Pull",
"sequence": "2",
"title": "Batch intrabank 2"
}
]
}'
{
"batchId": "bch-eabf1eb3-70a6-4ce0-ac01-3ffca4e6f86f",
"completedAt": "",
"createdAt": "2023-11-20T08:34:46Z",
"failedCount": 0,
"modifiedAt": "2023-11-20T08:34:46Z",
"status": "submitted",
"successCount": 0,
"totalCount": 2,
"transferType": "intrabank"
}
Authorizations
Body
application/json
Response
201 - application/json
Create an Intrabank Batch
The response is of type object
.
curl --request POST \
--url https://qa-api.sbx.solidfi.com/v1/batch/intrabank \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"data": [
{
"accountId": "{{accountId}}",
"amount": "25.00",
"api": "send",
"contactId": "{{contactId}}",
"description": "Funding",
"sequence": "1",
"title": "Batch intrabank 1"
},
{
"accountId": "{{accountId}}",
"amount": "25.00",
"api": "receive",
"contactId": "{{contactId}}",
"description": "Pull",
"sequence": "2",
"title": "Batch intrabank 2"
}
]
}'
{
"batchId": "bch-eabf1eb3-70a6-4ce0-ac01-3ffca4e6f86f",
"completedAt": "",
"createdAt": "2023-11-20T08:34:46Z",
"failedCount": 0,
"modifiedAt": "2023-11-20T08:34:46Z",
"status": "submitted",
"successCount": 0,
"totalCount": 2,
"transferType": "intrabank"
}