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
string
required

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.