Update a Transaction

Enables you to update the title and description of a transaction on the Solid platform
Transactions
Update a Transaction
 last updated: 
November 30, 2023

ENDPOINT

  1. PATCH /v1/account/:id/transaction/:id

REQUEST

  1. {
  2.  "title": "New title",
  3.  "description": "New description",
  4.  "metadata": {
  5.    "externalId": "usr_9HG724gvHJB378v3h",
  6.    "description": "Pro user"
  7.  }
  8. }

RESPONSE

  1. {
  2.  "id": "txn-371f0262-2194-4d6b-81c1-6785c5b17516",
  3.  "txnType": "credit",
  4.  "title": "I made this title",
  5.  "amount": "1.00",
  6.  "transferType": "ach",
  7.  "subType": "received",
  8.  "description": "I made this description",
  9.  "balance": "76203.18",
  10.  "status": "settled",
  11.  "accountId": "acc-cdc4ca0a-2f1b-4c0b-9964-2339268c2d7b",
  12.  "businessId": "",
  13.  "programId": "prg-ddb08641-6565-465d-ba94-ed199497299f",
  14.  "personId": "per-c1df28cb-a889-41ea-9ab3-6b33c8985c0f",
  15.  "familyId": "fam-d8b5d10e-9bc0-4c5d-9ecd-3ef95bf8f2fa",
  16.  "parentTransferId": "",
  17.  "parentTxnId": "",
  18.  "reviewCode": "",
  19.  "reviewMessage": "",
  20.  "intrabank": null,
  21.  "ach": {
  22.    "transferId": "tra-6a82c4f7-615f-4b5d-a92b-2967c29fdfc4",
  23.    "contactId": "",
  24.    "name": "Alberta Charleson",
  25.    "routingNumber": "084106768",
  26.    "type": "",
  27.    "bankName": "Evolve Bank and Trust",
  28.    "traceNumber": "",
  29.    "authId": ""
  30.  },
  31.  "card": null,
  32.  "domesticWire": null,
  33.  "internationalWire": null,
  34.  "digitalCheck": null,
  35.  "physicalCheck": null,
  36.  "debitCard": null,
  37.  "solidCard": null,
  38.  "crossBorder": null,
  39.  "buy": null,
  40.  "sell": null,
  41.  "enrichedData": {
  42.    "merchant": {
  43.      "name": "Alberta Charleson",
  44.      "email": "",
  45.      "phone": "",
  46.      "website": "thefamousdata.com",
  47.      "logo": "https://logos.ntropy.com/thefamousdata.com",
  48.      "address": {
  49.        "addressType": "",
  50.        "line1": "",
  51.        "line2": "",
  52.        "city": "",
  53.        "state": "",
  54.        "country": "",
  55.        "postalCode": ""
  56.      },
  57.      "location": {
  58.        "latitude": "0",
  59.        "longitude": "0"
  60.      }
  61.    },
  62.    "chartOfAccounts": [],
  63.    "labels": []
  64.  },
  65.  "createdAt": "2023-01-04T14:09:11Z",
  66.  "modifiedAt": "2023-01-04T14:09:12Z",
  67.  "txnDate": "2023-01-04T14:09:11Z",
  68.  "metadata": null
  69. }