Transactions
Update a Transaction
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
Transactions
Update a Transaction
Update a Transaction
PATCH
/
v1
/
account
/
{accountId}
/
transaction
/
{transactionId}
curl --request PATCH \
--url https://qa-api.sbx.solidfi.com/v1/account/{accountId}/transaction/{transactionId} \
--header 'Content-Type: application/json' \
--data '{
"description": "New description",
"metadata": {
"description": "Pro user",
"externalId": "usr_9HG724gvHJB378v3h"
},
"title": "New title"
}'
{
"accountId": "acc-ab566541-69c5-4393-8a41-47f167b2af02",
"ach": {
"authId": "",
"bankName": "Wells Fargo",
"contactId": "con-fe4769ef-e6c1-4f9d-8bbd-fe0ac57243f7",
"name": "Bright Might LLC",
"routingNumber": "122235821",
"traceNumber": "",
"transferId": "tra-129f4f1d-4335-4a03-b22c-5c1937ea9c9b",
"type": "sameDay"
},
"amount": "6.00",
"balance": "931.00",
"businessId": "bus-a4c781d1-abf2-4030-bc70-d860cf164013",
"buy": null,
"card": null,
"createdAt": "2023-11-20T08:28:40Z",
"crossBorder": null,
"debitCard": null,
"description": "New description",
"digitalCheck": null,
"domesticWire": null,
"enrichedData": {
"chartOfAccounts": [],
"labels": [
"financial services",
"intra account transfer"
],
"merchant": {
"address": null,
"email": "",
"location": null,
"logo": "https://logos.ntropy.com/business_icons-financial_services-intra_account_transfer",
"name": "",
"phone": "",
"website": ""
}
},
"fallbackTransferId": "",
"fallbackTxnId": "",
"familyId": "",
"id": "txn-d8e46c53-f0df-44df-8381-10e7e5310c89",
"internationalWire": null,
"intrabank": null,
"metadata": {
"description": "Pro user",
"externalId": "usr_9HG724gvHJB378v3h"
},
"modifiedAt": "2023-11-20T08:28:58Z",
"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": "pending",
"subType": "originated",
"title": "New title",
"transferType": "ach",
"txnDate": "2023-11-20T08:28:40Z",
"txnType": "credit"
}
Body
application/json
Response
200 - application/json
Update a Transaction
The response is of type object
.
curl --request PATCH \
--url https://qa-api.sbx.solidfi.com/v1/account/{accountId}/transaction/{transactionId} \
--header 'Content-Type: application/json' \
--data '{
"description": "New description",
"metadata": {
"description": "Pro user",
"externalId": "usr_9HG724gvHJB378v3h"
},
"title": "New title"
}'
{
"accountId": "acc-ab566541-69c5-4393-8a41-47f167b2af02",
"ach": {
"authId": "",
"bankName": "Wells Fargo",
"contactId": "con-fe4769ef-e6c1-4f9d-8bbd-fe0ac57243f7",
"name": "Bright Might LLC",
"routingNumber": "122235821",
"traceNumber": "",
"transferId": "tra-129f4f1d-4335-4a03-b22c-5c1937ea9c9b",
"type": "sameDay"
},
"amount": "6.00",
"balance": "931.00",
"businessId": "bus-a4c781d1-abf2-4030-bc70-d860cf164013",
"buy": null,
"card": null,
"createdAt": "2023-11-20T08:28:40Z",
"crossBorder": null,
"debitCard": null,
"description": "New description",
"digitalCheck": null,
"domesticWire": null,
"enrichedData": {
"chartOfAccounts": [],
"labels": [
"financial services",
"intra account transfer"
],
"merchant": {
"address": null,
"email": "",
"location": null,
"logo": "https://logos.ntropy.com/business_icons-financial_services-intra_account_transfer",
"name": "",
"phone": "",
"website": ""
}
},
"fallbackTransferId": "",
"fallbackTxnId": "",
"familyId": "",
"id": "txn-d8e46c53-f0df-44df-8381-10e7e5310c89",
"internationalWire": null,
"intrabank": null,
"metadata": {
"description": "Pro user",
"externalId": "usr_9HG724gvHJB378v3h"
},
"modifiedAt": "2023-11-20T08:28:58Z",
"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": "pending",
"subType": "originated",
"title": "New title",
"transferType": "ach",
"txnDate": "2023-11-20T08:28:40Z",
"txnType": "credit"
}