PUT
/
v0
/
bulk
/
reconciliations
/
{reconciliation_id}
/
journal-entries
Bulk update reconciliation journal entry status
curl --request PUT \
  --url https://api.sandbox.teal.dev/v0/bulk/reconciliations/{reconciliation_id}/journal-entries \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'teal-instance-id: <teal-instance-id>' \
  --data '[
  {
    "journal_entry_id": "TYcnEf8yEYMXSwUui3E2df",
    "reconciliation_status": "reconciled"
  }
]'
[
  {
    "reconciliation_journal_entry": {
      "id": "C4ocnUQze8kDwQ3EczkZXn",
      "description": "Payroll#230215",
      "datetime": "2023-02-15T06:42:18Z",
      "reconciliation_status": "reconciled",
      "files": null,
      "line_entry_ids": [
        "XMDsKVuW4Wmi3LTW31Qw6E",
        "NULcvXTkLczde32qs1rqgB"
      ],
      "linked_entity": {
        "type": "receivable",
        "id": "<string>"
      },
      "line_entries": [
        {
          "amount": 31282.28,
          "datetime": "2023-02-15T06:42:18Z",
          "debit_credit": "debit",
          "description": "Payroll#230215",
          "editable": false,
          "id": "XMDsKVuW4Wmi3LTW31Qw6E",
          "journal_entry_description": "Payroll#230215",
          "journal_entry_id": "C4ocnUQze8kDwQ3EczkZXn",
          "ledger_id": "7JRNsKwy2Lw66caxVU7WGC",
          "ledger_name": "Pluto Checking 4242",
          "tags": [],
          "transaction_id": "txn_UjL3BQnEaJtecuC7CUeDk"
        },
        {
          "amount": 31282.28,
          "datetime": "2023-02-15T06:42:18Z",
          "debit_credit": "credit",
          "description": "Payroll#230215",
          "editable": false,
          "id": "NULcvXTkLczde32qs1rqgB",
          "journal_entry_description": "Payroll#230215",
          "journal_entry_id": "C4ocnUQze8kDwQ3EczkZXn",
          "ledger_id": "HLn8oy2eqMUCwjp1Cwdgco",
          "ledger_name": "Payroll Expense",
          "tags": []
        }
      ],
      "reconciliation_id": "reconciled"
    },
    "error": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Headers

teal-instance-id
string
required

The Teal instance ID

Path Parameters

reconciliation_id
string
required

The reconciliation ID

Body

application/json · ReconciliationJournalEntryUpdate · object[]

The body is of type ReconciliationJournalEntryUpdate · object[].

Response

207
application/json

Successful Response

The response is of type ReconciliationJournalEntryUpdateResult · object[].