Transactions
Originate an Intra Account 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
Transactions
Originate an Intra Account Push
Originate an Intra Account Push
POST
/
v2
/
payments
/
intra_account
/
push
curl --request POST \
--url https://api.sandbox.solidfi.com/v2/payments/intra_account/push \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data '{
"sub_account_id": "sub_bda1e562657c41e553104b10aad3fe70",
"counterparty_id": "ctp_8e5541c8a9e50c3af3b0daacf9175130",
"amount": "4570.00",
"description": "May Salary",
"external_reference_id": "123-9088-2"
}'
{
"id": "txn_817d2a074042bb4ec54e08fd82b1e0a8",
"client_id": "cli_64c6c87ee9d609f36a6f390dc378a4ce",
"master_account_holder_id": "mah_201e02c581a098a740456c5c19fcfcd6",
"master_account_id": "mas_743fa071316bc6beaf5dddfd05f49c30",
"sub_account_holder_id": "sah_5ccfeef0adf0cbe2aa0980d2c9505752",
"sub_account_id": "sub_bda1e562657c41e553104b10aad3fe70",
"status": "settled",
"amount": "4570.00",
"currency": "usd",
"direction": "debit",
"method": "intra_account",
"type": "push",
"message": "outgoing",
"description": "May Salary",
"available_balance": "500.00",
"pending_credits": "0.00",
"pending_debits": "4570.00",
"counterparty": {
"id": "ctp_8e5541c8a9e50c3af3b0daacf9175130",
"name": "John Doe",
"verification_status": "pass",
"account_number": "9542450298324502",
"routing_number": "",
"account_type": "",
"bank_name": "",
"beneficiary_bank": null,
"correspondent_bank": null,
"shipping_address": null
},
"parent_transaction_id": "",
"external_reference_id": "123-9088-2",
"purpose": "This is May Salary",
"ofac": {
"status": "pass",
"last_updated_at": "2024-04-01T21:00:00Z"
},
"attachments": null,
"metadata": null,
"reconciliation": {
"status": "reconciled",
"master_account": null,
"sub_account": [
{
"id": "sub_bda1e562657c41e553104b10aad3fe70",
"transaction_id": "txn_817d2a074042bb4ec54e08fd82b1e0a8",
"amount": "4570.00"
}
]
},
"timestamps": {
"created_at": "2024-04-04T11:06:00Z",
"updated_at": "2024-04-04T11:06:00Z",
"settled_at": "2024-04-04T11:06:00Z"
}
}
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
Originate an Intra Account Push
The response is of type object
.
curl --request POST \
--url https://api.sandbox.solidfi.com/v2/payments/intra_account/push \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data '{
"sub_account_id": "sub_bda1e562657c41e553104b10aad3fe70",
"counterparty_id": "ctp_8e5541c8a9e50c3af3b0daacf9175130",
"amount": "4570.00",
"description": "May Salary",
"external_reference_id": "123-9088-2"
}'
{
"id": "txn_817d2a074042bb4ec54e08fd82b1e0a8",
"client_id": "cli_64c6c87ee9d609f36a6f390dc378a4ce",
"master_account_holder_id": "mah_201e02c581a098a740456c5c19fcfcd6",
"master_account_id": "mas_743fa071316bc6beaf5dddfd05f49c30",
"sub_account_holder_id": "sah_5ccfeef0adf0cbe2aa0980d2c9505752",
"sub_account_id": "sub_bda1e562657c41e553104b10aad3fe70",
"status": "settled",
"amount": "4570.00",
"currency": "usd",
"direction": "debit",
"method": "intra_account",
"type": "push",
"message": "outgoing",
"description": "May Salary",
"available_balance": "500.00",
"pending_credits": "0.00",
"pending_debits": "4570.00",
"counterparty": {
"id": "ctp_8e5541c8a9e50c3af3b0daacf9175130",
"name": "John Doe",
"verification_status": "pass",
"account_number": "9542450298324502",
"routing_number": "",
"account_type": "",
"bank_name": "",
"beneficiary_bank": null,
"correspondent_bank": null,
"shipping_address": null
},
"parent_transaction_id": "",
"external_reference_id": "123-9088-2",
"purpose": "This is May Salary",
"ofac": {
"status": "pass",
"last_updated_at": "2024-04-01T21:00:00Z"
},
"attachments": null,
"metadata": null,
"reconciliation": {
"status": "reconciled",
"master_account": null,
"sub_account": [
{
"id": "sub_bda1e562657c41e553104b10aad3fe70",
"transaction_id": "txn_817d2a074042bb4ec54e08fd82b1e0a8",
"amount": "4570.00"
}
]
},
"timestamps": {
"created_at": "2024-04-04T11:06:00Z",
"updated_at": "2024-04-04T11:06:00Z",
"settled_at": "2024-04-04T11:06:00Z"
}
}