PATCH
/
v0
/
business
/
{business_id}
/
journal-entries
/
{journal_entry_id}
curl --request PATCH \
  --url https://api.sandbox.getasset.com/v0/business/{business_id}/journal-entries/{journal_entry_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "description": "<string>",
  "datetime": "2023-11-07T05:31:56Z",
  "line_changes": {
    "create_lines": [
      {
        "ledger_id": "Ns6rRRLYVZPh4cVB7MDby5",
        "description": "<string>",
        "debit_credit": "<string>",
        "amount": 1
      }
    ],
    "delete_lines": [
      "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    ]
  },
  "needs_review": true
}'
{
  "data": {
    "business_id": "Pk2fNFDd8wj7EFeLWJywc7",
    "description": "<string>",
    "datetime": "2023-11-07T05:31:56Z",
    "needs_review": true,
    "id": "R2fAXCjqJPdpYata112zyW",
    "transaction_id": "WQMDNUHpBThYSNh4AprDBo",
    "line_entries": [
      {
        "ledger_id": "Ns6rRRLYVZPh4cVB7MDby5",
        "description": "<string>",
        "debit_credit": "<string>",
        "amount": 123,
        "id": "GA6EG2qFxA97NZHtxeLPUy",
        "journal_entry_id": "R2fAXCjqJPdpYata112zyW",
        "transaction_id": "WQMDNUHpBThYSNh4AprDBo"
      }
    ],
    "categorization_method": "transfer"
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

business_id
string
required
journal_entry_id
string
required

Body

application/json
description
string | null

The description of the Journal Entry

datetime
string | null

The datetime the Journal Entry was created in UTC ISO-8601 format

line_changes
object | null

An object with optional create and delete values that modify the lines in the Journal Entry. To update a line, simply remove the old line and add a new one.

needs_review
boolean | null

Whether the Journal Entry needs review

Response

200
application/json
Successful Response
data
object
required