Simulation
Simulate an Incoming Domestic Wire Push
Getting Started
Master Accounts
Sub Account Holders
Sub Accounts
Counterparties
Card Holders
Cards
Transactions
- GETList all Transactions
- POSTSub Ledger a Transaction
- POSTOriginate an Intra Account Push
- POSTOriginate an Intra Account Pull
- POSTOriginate an ACH Push
- POSTOriginate an ACH Pull
- POSTOriginate a Domestic Wire
- POSTOriginate an International Wire
- POSTOriginate an RTP Push
- POSTOriginate a FedNow Push
- POSTOriginate a Debit Card Push
- POSTOriginate a Debit Card Pull
- POSTOriginate a Check Send
- POSTOriginate a Check Deposit
- GETRetrieve a Transaction
- PATCHUpdate a Transaction
Attachments
Webhooks
Simulation
Simulate an Incoming Domestic Wire Push
Simulate an Incoming Domestic Wire Push
POST
/
v2
/
simulate
/
incoming
/
domestic_wire
curl --request POST \
--url https://api.sandbox.solidfi.com/v2/simulate/incoming/domestic_wire \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data '{
"sub_account_id": "sub_bda1e562657c41e553104b10aad3fe70",
"amount": "500.00",
"description": "May Rent",
"counterparty": {
"name": "John Doe",
"account_number": "78762546",
"routing_number": "121042882"
}
}'
{
"id": "txn_0191beb31b3771ec86fe245d603f1521",
"sub_account_id": "sub_019105d908077ed2be68d7a08b4c7bfb",
"master_account_holder_id": "mah_019105907421702091f5651e87682222",
"sub_account_holder_id": "sah_019105d12584786ab54e4d1ba55f7c00",
"client_id": "cli_0191058c4fc676dcb4ed67a096a80d6a",
"master_account_id": "mas_019105952d8770f984bc888caa8059f8",
"status": "received",
"amount": "8.00",
"currency": "USD",
"direction": "credit",
"method": "domestic_wire",
"type": "push",
"message": "incoming",
"description": "Rent Payment",
"available_balance": "130.85",
"pending_credits": "8.00",
"pending_debits": "0.00",
"counterparty": {
"id": "",
"name": "John Doe",
"verification_status": "",
"account_number": "78762546",
"routing_number": "121042882",
"account_type": "",
"bank_name": "",
"beneficiary_bank": null,
"correspondent_bank": null,
"shipping_address": null
},
"ach": null,
"domestic_wire": {
"imad": "FVtvUkfw0",
"omad": "k2aVdUuUy"
},
"international_wire": null,
"rtp": null,
"fednow": null,
"check": null,
"card": null,
"parent_transaction_id": "",
"external_reference_id": "",
"purpose": "",
"ofac": {
"status": "pass",
"last_updated_at": "2024-04-01T21:00:00Z"
},
"attachments": null,
"metadata": null,
"reconciliation": {
"status": "reconciled",
"master_account": [
{
"id": "mas_019105952d8770f984bc888caa8059f8",
"transaction_id": "txn_0191beb31a0573b586bbaf1909a0dd2a",
"amount": "8.00"
}
],
"sub_account": null
},
"timestamps": {
"created_at": "2024-09-04T20:21:34Z",
"updated_at": "2024-09-04T20:21:34Z",
"settled_at": ""
}
}
Headers
API key is required to call Solid APIs. You can view and manage your API keys in the Solid dashboard.
Example:
"{{api_key}}"
Body
application/json
Response
201
application/json
Simulate an Incoming Domestic Wire Push
The response is of type object
.
curl --request POST \
--url https://api.sandbox.solidfi.com/v2/simulate/incoming/domestic_wire \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data '{
"sub_account_id": "sub_bda1e562657c41e553104b10aad3fe70",
"amount": "500.00",
"description": "May Rent",
"counterparty": {
"name": "John Doe",
"account_number": "78762546",
"routing_number": "121042882"
}
}'
{
"id": "txn_0191beb31b3771ec86fe245d603f1521",
"sub_account_id": "sub_019105d908077ed2be68d7a08b4c7bfb",
"master_account_holder_id": "mah_019105907421702091f5651e87682222",
"sub_account_holder_id": "sah_019105d12584786ab54e4d1ba55f7c00",
"client_id": "cli_0191058c4fc676dcb4ed67a096a80d6a",
"master_account_id": "mas_019105952d8770f984bc888caa8059f8",
"status": "received",
"amount": "8.00",
"currency": "USD",
"direction": "credit",
"method": "domestic_wire",
"type": "push",
"message": "incoming",
"description": "Rent Payment",
"available_balance": "130.85",
"pending_credits": "8.00",
"pending_debits": "0.00",
"counterparty": {
"id": "",
"name": "John Doe",
"verification_status": "",
"account_number": "78762546",
"routing_number": "121042882",
"account_type": "",
"bank_name": "",
"beneficiary_bank": null,
"correspondent_bank": null,
"shipping_address": null
},
"ach": null,
"domestic_wire": {
"imad": "FVtvUkfw0",
"omad": "k2aVdUuUy"
},
"international_wire": null,
"rtp": null,
"fednow": null,
"check": null,
"card": null,
"parent_transaction_id": "",
"external_reference_id": "",
"purpose": "",
"ofac": {
"status": "pass",
"last_updated_at": "2024-04-01T21:00:00Z"
},
"attachments": null,
"metadata": null,
"reconciliation": {
"status": "reconciled",
"master_account": [
{
"id": "mas_019105952d8770f984bc888caa8059f8",
"transaction_id": "txn_0191beb31a0573b586bbaf1909a0dd2a",
"amount": "8.00"
}
],
"sub_account": null
},
"timestamps": {
"created_at": "2024-09-04T20:21:34Z",
"updated_at": "2024-09-04T20:21:34Z",
"settled_at": ""
}
}