Testing
Test Incoming DomesticWire
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 DomesticWire
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
/
wire
curl --request POST \
--url https://qa-api.sbx.solidfi.com/v1/account/{accountId}/test/wire \
--header 'Content-Type: application/json' \
--data '{
"amount": "10.00",
"description": "optional",
"senderName": "optional",
"senderRoutingNumber": "121042882",
"wireType": "domestic"
}'
Path Parameters
Body
application/json
curl --request POST \
--url https://qa-api.sbx.solidfi.com/v1/account/{accountId}/test/wire \
--header 'Content-Type: application/json' \
--data '{
"amount": "10.00",
"description": "optional",
"senderName": "optional",
"senderRoutingNumber": "121042882",
"wireType": "domestic"
}'