Testing
Test Incoming ACH (Credit)
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
Testing
Test Incoming ACH (Credit)
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
/
account
/
{accountId}
/
test
/
ach
curl --request POST \
--url https://qa-api.sbx.solidfi.com/v1/account/{accountId}/test/ach \
--header 'Content-Type: application/json' \
--data '{
"amount": "10.00",
"description": "optional",
"senderName": "optional",
"senderRoutingNumber": "121042882",
"txnType": "credit"
}'
{
"accountId": "acc-ab566541-69c5-4393-8a41-47f167b2af02",
"ach": {
"authId": "",
"bankName": "Wells Fargo Bank National Association",
"contactId": "",
"name": "optional",
"routingNumber": "121042882",
"traceNumber": "3017",
"transferId": "tra-e5a7fca7-c48f-49cc-a468-fd513e155265",
"type": ""
},
"amount": "10.00",
"balance": "941.00",
"businessId": "bus-a4c781d1-abf2-4030-bc70-d860cf164013",
"buy": null,
"card": null,
"createdAt": "2023-11-20T08:35:39Z",
"crossBorder": null,
"debitCard": null,
"description": "optional:",
"digitalCheck": null,
"domesticWire": null,
"enrichedData": null,
"fallbackTransferId": "",
"fallbackTxnId": "",
"familyId": "",
"id": "txn-f070d2d0-bead-4766-82d2-f5200c8d121c",
"internationalWire": null,
"intrabank": null,
"metadata": null,
"modifiedAt": "2023-11-20T08:35:39Z",
"parentTransferId": "",
"parentTxnId": "",
"personId": "per-e6553324-1db8-49a8-a0d3-29132280b838",
"physicalCheck": null,
"programId": "prg-ffa511da-1adc-4603-b845-173b895a33f6",
"reviewCode": "",
"reviewMessage": "",
"sell": null,
"solidCard": null,
"status": "settled",
"subType": "received",
"title": "Received from optional",
"transferType": "ach",
"txnDate": "2023-11-20T08:35:39Z",
"txnType": "credit"
}
Path Parameters
Body
application/json
Response
200 - application/json
Test Incoming ACH (Credit) / Test Incoming ACH (Debit)
The response is of type object
.
curl --request POST \
--url https://qa-api.sbx.solidfi.com/v1/account/{accountId}/test/ach \
--header 'Content-Type: application/json' \
--data '{
"amount": "10.00",
"description": "optional",
"senderName": "optional",
"senderRoutingNumber": "121042882",
"txnType": "credit"
}'
{
"accountId": "acc-ab566541-69c5-4393-8a41-47f167b2af02",
"ach": {
"authId": "",
"bankName": "Wells Fargo Bank National Association",
"contactId": "",
"name": "optional",
"routingNumber": "121042882",
"traceNumber": "3017",
"transferId": "tra-e5a7fca7-c48f-49cc-a468-fd513e155265",
"type": ""
},
"amount": "10.00",
"balance": "941.00",
"businessId": "bus-a4c781d1-abf2-4030-bc70-d860cf164013",
"buy": null,
"card": null,
"createdAt": "2023-11-20T08:35:39Z",
"crossBorder": null,
"debitCard": null,
"description": "optional:",
"digitalCheck": null,
"domesticWire": null,
"enrichedData": null,
"fallbackTransferId": "",
"fallbackTxnId": "",
"familyId": "",
"id": "txn-f070d2d0-bead-4766-82d2-f5200c8d121c",
"internationalWire": null,
"intrabank": null,
"metadata": null,
"modifiedAt": "2023-11-20T08:35:39Z",
"parentTransferId": "",
"parentTxnId": "",
"personId": "per-e6553324-1db8-49a8-a0d3-29132280b838",
"physicalCheck": null,
"programId": "prg-ffa511da-1adc-4603-b845-173b895a33f6",
"reviewCode": "",
"reviewMessage": "",
"sell": null,
"solidCard": null,
"status": "settled",
"subType": "received",
"title": "Received from optional",
"transferType": "ach",
"txnDate": "2023-11-20T08:35:39Z",
"txnType": "credit"
}