Partial Update Intercompany Journal Entry
curl --request PATCH \
--url https://api.meetcampfire.com/coa/api/intercompany-journal-entry/{id} \
--header 'Content-Type: application/json' \
--data '
{
"reversal_date": "2023-12-25",
"order": "<string>",
"journals_to_delete": [
123
],
"exchange_rates": "<unknown>",
"source": "<string>",
"source_id": "<string>",
"source_file": 123,
"close_task_id": "<string>",
"chat_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"journal_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"memo": "<string>",
"currency": "<string>",
"created_automatically": true,
"date": "2023-12-25",
"ref_number": "<string>",
"reversal_of": 123,
"entities": [
123
]
}
'import requests
url = "https://api.meetcampfire.com/coa/api/intercompany-journal-entry/{id}"
payload = {
"reversal_date": "2023-12-25",
"order": "<string>",
"journals_to_delete": [123],
"exchange_rates": "<unknown>",
"source": "<string>",
"source_id": "<string>",
"source_file": 123,
"close_task_id": "<string>",
"chat_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"journal_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"memo": "<string>",
"currency": "<string>",
"created_automatically": True,
"date": "2023-12-25",
"ref_number": "<string>",
"reversal_of": 123,
"entities": [123]
}
headers = {"Content-Type": "application/json"}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
reversal_date: '2023-12-25',
order: '<string>',
journals_to_delete: [123],
exchange_rates: '<unknown>',
source: '<string>',
source_id: '<string>',
source_file: 123,
close_task_id: '<string>',
chat_uuid: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
journal_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
memo: '<string>',
currency: '<string>',
created_automatically: true,
date: '2023-12-25',
ref_number: '<string>',
reversal_of: 123,
entities: [123]
})
};
fetch('https://api.meetcampfire.com/coa/api/intercompany-journal-entry/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.meetcampfire.com/coa/api/intercompany-journal-entry/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'reversal_date' => '2023-12-25',
'order' => '<string>',
'journals_to_delete' => [
123
],
'exchange_rates' => '<unknown>',
'source' => '<string>',
'source_id' => '<string>',
'source_file' => 123,
'close_task_id' => '<string>',
'chat_uuid' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'journal_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'memo' => '<string>',
'currency' => '<string>',
'created_automatically' => true,
'date' => '2023-12-25',
'ref_number' => '<string>',
'reversal_of' => 123,
'entities' => [
123
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.meetcampfire.com/coa/api/intercompany-journal-entry/{id}"
payload := strings.NewReader("{\n \"reversal_date\": \"2023-12-25\",\n \"order\": \"<string>\",\n \"journals_to_delete\": [\n 123\n ],\n \"exchange_rates\": \"<unknown>\",\n \"source\": \"<string>\",\n \"source_id\": \"<string>\",\n \"source_file\": 123,\n \"close_task_id\": \"<string>\",\n \"chat_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"journal_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"memo\": \"<string>\",\n \"currency\": \"<string>\",\n \"created_automatically\": true,\n \"date\": \"2023-12-25\",\n \"ref_number\": \"<string>\",\n \"reversal_of\": 123,\n \"entities\": [\n 123\n ]\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.meetcampfire.com/coa/api/intercompany-journal-entry/{id}")
.header("Content-Type", "application/json")
.body("{\n \"reversal_date\": \"2023-12-25\",\n \"order\": \"<string>\",\n \"journals_to_delete\": [\n 123\n ],\n \"exchange_rates\": \"<unknown>\",\n \"source\": \"<string>\",\n \"source_id\": \"<string>\",\n \"source_file\": 123,\n \"close_task_id\": \"<string>\",\n \"chat_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"journal_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"memo\": \"<string>\",\n \"currency\": \"<string>\",\n \"created_automatically\": true,\n \"date\": \"2023-12-25\",\n \"ref_number\": \"<string>\",\n \"reversal_of\": 123,\n \"entities\": [\n 123\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.meetcampfire.com/coa/api/intercompany-journal-entry/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"reversal_date\": \"2023-12-25\",\n \"order\": \"<string>\",\n \"journals_to_delete\": [\n 123\n ],\n \"exchange_rates\": \"<unknown>\",\n \"source\": \"<string>\",\n \"source_id\": \"<string>\",\n \"source_file\": 123,\n \"close_task_id\": \"<string>\",\n \"chat_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"journal_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"memo\": \"<string>\",\n \"currency\": \"<string>\",\n \"created_automatically\": true,\n \"date\": \"2023-12-25\",\n \"ref_number\": \"<string>\",\n \"reversal_of\": 123,\n \"entities\": [\n 123\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": 123,
"transactions": [
{
"id": 123,
"is_deleted": false,
"deleted_at": "2023-11-07T05:31:56Z",
"entity_name": "<string>",
"entity_currency": "<string>",
"account_name": "<string>",
"account_number": "<string>",
"vendor_name": "<string>",
"vendor_id": "<string>",
"vendor_campfire_id": "<string>",
"department_name": "<string>",
"department_code": "<string>",
"parent_department_name": "<string>",
"parent_department": 123,
"tags": [
{
"id": 123,
"group_name": "<string>",
"parent_name": "<string>",
"is_deleted": false,
"deleted_at": "2023-11-07T05:31:56Z",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"last_modified_at": "2023-11-07T05:31:56Z",
"customer": 123,
"parent": 123,
"is_active": true,
"group": 123
}
],
"journal": 123,
"journal_order": "<string>",
"journal_memo": "<string>",
"journal_type": "<string>",
"intercompany_journal": 123,
"created_automatically": true,
"journal_attachments": [
{
"id": 123,
"customer": 123,
"created_at": "2023-11-07T05:31:56Z",
"created_by": 123,
"created_by_name": "<string>",
"created_by_email": "<string>",
"last_modified_at": "2023-11-07T05:31:56Z",
"name": "<string>",
"url": "<string>",
"s3_path": "<string>",
"app": "<string>",
"model": "<string>",
"is_deleted": false,
"deleted_at": "2023-11-07T05:31:56Z",
"s3_content_type": "<string>",
"s3_content_length": 1073741823,
"object_id": 1073741823
}
],
"journal_type_name": "<string>",
"invoice": "<string>",
"bill": "<string>",
"date_month": "<string>",
"date_year": "<string>",
"balance_after_transaction": 123,
"bank_account": "<string>",
"bank_account_name": "<string>",
"last_modified_by_name": "<string>",
"account_type": "<string>",
"account_subtype": "<string>",
"parent_account_name": "<string>",
"files": "<string>",
"invoice_id": 123,
"invoice_number": "<string>",
"bill_id": 123,
"bill_number": "<string>",
"file_names": "<string>",
"has_matches": true,
"has_ai": true,
"has_rules": true,
"has_merges": true,
"has_fixed_asset_rule_matches": true,
"has_suggested_rule": true,
"suggested_rule_account_name": "<string>",
"primary_action_type": "<string>",
"suggested_account": 123,
"suggested_account_name": "<string>",
"suggested_account_number": "<string>",
"amount": 0,
"amount_native": 0,
"amount_book": 0,
"amortization_schedule": [
{
"journal_entry_order": "<string>",
"date": "2023-12-25",
"amount": 0,
"customer": 123,
"id": 123,
"posted": true,
"transaction": 123,
"bill_line": 123,
"debit_memo_line": 123,
"journal_entry": 123
}
],
"linked_amortizations": [
{}
],
"created_fixed_assets": [
{}
],
"reconciliation_report": "<string>",
"opposing_account_name": "<string>",
"opposing_account_number": "<string>",
"transaction_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"balance_before_transaction": 0,
"created_at": "2023-11-07T05:31:56Z",
"producer": "<string>",
"warehouse_row_key": "<string>",
"last_modified_at": "2023-11-07T05:31:56Z",
"source_group": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"customer": 123,
"entity": 123,
"counterparty_entity": 123,
"cost_allocation": 123,
"last_sync_run": 123,
"account": 123,
"debit_amount": 0,
"credit_amount": 0,
"debit_amount_book": 0,
"credit_amount_book": 0,
"debit_amount_native": 0,
"credit_amount_native": 0,
"currency": "<string>",
"exchange_rate": 0,
"exchange_rate_book": 0,
"posted_at": "2023-12-25",
"merchant_name": "<string>",
"bank_description": "<string>",
"tag_ids": [
0
],
"tag_group_ids": [
0
],
"note": "<string>",
"receipt_url": "<string>",
"external_id": "<string>",
"needs_review": true,
"draft_matches": null,
"last_lam_prediction_attempt": "2023-11-07T05:31:56Z",
"source_entity": 123,
"parent_bank_transaction": 123,
"vendor": 123,
"department": 123,
"last_modified_by": 123
}
],
"attachments": [
{
"id": 123,
"customer": 123,
"created_at": "2023-11-07T05:31:56Z",
"created_by": 123,
"created_by_name": "<string>",
"created_by_email": "<string>",
"last_modified_at": "2023-11-07T05:31:56Z",
"name": "<string>",
"url": "<string>",
"s3_path": "<string>",
"app": "<string>",
"model": "<string>",
"is_deleted": false,
"deleted_at": "2023-11-07T05:31:56Z",
"s3_content_type": "<string>",
"s3_content_length": 1073741823,
"object_id": 1073741823
}
],
"reversal_of_order": "<string>",
"reversals": [
{}
],
"is_deleted": false,
"deleted_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"last_modified_at": "2023-11-07T05:31:56Z",
"customer": 123,
"order": "<string>",
"source": "<string>",
"source_file": 123,
"close_task_id": "<string>",
"type": "bill",
"journal_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"memo": "<string>",
"currency": "<string>",
"created_automatically": true,
"date": "2023-12-25",
"ref_number": "<string>",
"reversal_of": 123,
"entities": [
123
]
}Core Accounting
Partial Update Intercompany Journal Entry
Performs a partial update of an intercompany journal entry, allowing modification of specific fields without replacing the entire entry.
This endpoint supports partial updates to:
- Journal entry metadata (memo, date, currency, reference number)
- Individual transaction modifications
- Entity exchange rate adjustments
- Vendor, department, and tag assignments
- Account categorizations and amounts
Key differences from PUT:
- Only specified fields are updated (vs. full replacement)
- Maintains existing data for unspecified fields
- Supports granular transaction modifications
- Preserves audit trail and timestamps
- Allows incremental changes without full transaction rebuilds
Validation requirements:
- Modified transactions must maintain entity balance (debits = credits)
- Cannot modify entries in closed accounting periods
- All referenced accounts, vendors, departments must be active
- Exchange rates must be valid for multi-currency transactions
- Account assignments must be appropriate for transaction types
PATCH
/
coa
/
api
/
intercompany-journal-entry
/
{id}
Partial Update Intercompany Journal Entry
curl --request PATCH \
--url https://api.meetcampfire.com/coa/api/intercompany-journal-entry/{id} \
--header 'Content-Type: application/json' \
--data '
{
"reversal_date": "2023-12-25",
"order": "<string>",
"journals_to_delete": [
123
],
"exchange_rates": "<unknown>",
"source": "<string>",
"source_id": "<string>",
"source_file": 123,
"close_task_id": "<string>",
"chat_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"journal_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"memo": "<string>",
"currency": "<string>",
"created_automatically": true,
"date": "2023-12-25",
"ref_number": "<string>",
"reversal_of": 123,
"entities": [
123
]
}
'import requests
url = "https://api.meetcampfire.com/coa/api/intercompany-journal-entry/{id}"
payload = {
"reversal_date": "2023-12-25",
"order": "<string>",
"journals_to_delete": [123],
"exchange_rates": "<unknown>",
"source": "<string>",
"source_id": "<string>",
"source_file": 123,
"close_task_id": "<string>",
"chat_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"journal_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"memo": "<string>",
"currency": "<string>",
"created_automatically": True,
"date": "2023-12-25",
"ref_number": "<string>",
"reversal_of": 123,
"entities": [123]
}
headers = {"Content-Type": "application/json"}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
reversal_date: '2023-12-25',
order: '<string>',
journals_to_delete: [123],
exchange_rates: '<unknown>',
source: '<string>',
source_id: '<string>',
source_file: 123,
close_task_id: '<string>',
chat_uuid: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
journal_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
memo: '<string>',
currency: '<string>',
created_automatically: true,
date: '2023-12-25',
ref_number: '<string>',
reversal_of: 123,
entities: [123]
})
};
fetch('https://api.meetcampfire.com/coa/api/intercompany-journal-entry/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.meetcampfire.com/coa/api/intercompany-journal-entry/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'reversal_date' => '2023-12-25',
'order' => '<string>',
'journals_to_delete' => [
123
],
'exchange_rates' => '<unknown>',
'source' => '<string>',
'source_id' => '<string>',
'source_file' => 123,
'close_task_id' => '<string>',
'chat_uuid' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'journal_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'memo' => '<string>',
'currency' => '<string>',
'created_automatically' => true,
'date' => '2023-12-25',
'ref_number' => '<string>',
'reversal_of' => 123,
'entities' => [
123
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.meetcampfire.com/coa/api/intercompany-journal-entry/{id}"
payload := strings.NewReader("{\n \"reversal_date\": \"2023-12-25\",\n \"order\": \"<string>\",\n \"journals_to_delete\": [\n 123\n ],\n \"exchange_rates\": \"<unknown>\",\n \"source\": \"<string>\",\n \"source_id\": \"<string>\",\n \"source_file\": 123,\n \"close_task_id\": \"<string>\",\n \"chat_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"journal_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"memo\": \"<string>\",\n \"currency\": \"<string>\",\n \"created_automatically\": true,\n \"date\": \"2023-12-25\",\n \"ref_number\": \"<string>\",\n \"reversal_of\": 123,\n \"entities\": [\n 123\n ]\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.meetcampfire.com/coa/api/intercompany-journal-entry/{id}")
.header("Content-Type", "application/json")
.body("{\n \"reversal_date\": \"2023-12-25\",\n \"order\": \"<string>\",\n \"journals_to_delete\": [\n 123\n ],\n \"exchange_rates\": \"<unknown>\",\n \"source\": \"<string>\",\n \"source_id\": \"<string>\",\n \"source_file\": 123,\n \"close_task_id\": \"<string>\",\n \"chat_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"journal_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"memo\": \"<string>\",\n \"currency\": \"<string>\",\n \"created_automatically\": true,\n \"date\": \"2023-12-25\",\n \"ref_number\": \"<string>\",\n \"reversal_of\": 123,\n \"entities\": [\n 123\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.meetcampfire.com/coa/api/intercompany-journal-entry/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"reversal_date\": \"2023-12-25\",\n \"order\": \"<string>\",\n \"journals_to_delete\": [\n 123\n ],\n \"exchange_rates\": \"<unknown>\",\n \"source\": \"<string>\",\n \"source_id\": \"<string>\",\n \"source_file\": 123,\n \"close_task_id\": \"<string>\",\n \"chat_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"journal_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"memo\": \"<string>\",\n \"currency\": \"<string>\",\n \"created_automatically\": true,\n \"date\": \"2023-12-25\",\n \"ref_number\": \"<string>\",\n \"reversal_of\": 123,\n \"entities\": [\n 123\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": 123,
"transactions": [
{
"id": 123,
"is_deleted": false,
"deleted_at": "2023-11-07T05:31:56Z",
"entity_name": "<string>",
"entity_currency": "<string>",
"account_name": "<string>",
"account_number": "<string>",
"vendor_name": "<string>",
"vendor_id": "<string>",
"vendor_campfire_id": "<string>",
"department_name": "<string>",
"department_code": "<string>",
"parent_department_name": "<string>",
"parent_department": 123,
"tags": [
{
"id": 123,
"group_name": "<string>",
"parent_name": "<string>",
"is_deleted": false,
"deleted_at": "2023-11-07T05:31:56Z",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"last_modified_at": "2023-11-07T05:31:56Z",
"customer": 123,
"parent": 123,
"is_active": true,
"group": 123
}
],
"journal": 123,
"journal_order": "<string>",
"journal_memo": "<string>",
"journal_type": "<string>",
"intercompany_journal": 123,
"created_automatically": true,
"journal_attachments": [
{
"id": 123,
"customer": 123,
"created_at": "2023-11-07T05:31:56Z",
"created_by": 123,
"created_by_name": "<string>",
"created_by_email": "<string>",
"last_modified_at": "2023-11-07T05:31:56Z",
"name": "<string>",
"url": "<string>",
"s3_path": "<string>",
"app": "<string>",
"model": "<string>",
"is_deleted": false,
"deleted_at": "2023-11-07T05:31:56Z",
"s3_content_type": "<string>",
"s3_content_length": 1073741823,
"object_id": 1073741823
}
],
"journal_type_name": "<string>",
"invoice": "<string>",
"bill": "<string>",
"date_month": "<string>",
"date_year": "<string>",
"balance_after_transaction": 123,
"bank_account": "<string>",
"bank_account_name": "<string>",
"last_modified_by_name": "<string>",
"account_type": "<string>",
"account_subtype": "<string>",
"parent_account_name": "<string>",
"files": "<string>",
"invoice_id": 123,
"invoice_number": "<string>",
"bill_id": 123,
"bill_number": "<string>",
"file_names": "<string>",
"has_matches": true,
"has_ai": true,
"has_rules": true,
"has_merges": true,
"has_fixed_asset_rule_matches": true,
"has_suggested_rule": true,
"suggested_rule_account_name": "<string>",
"primary_action_type": "<string>",
"suggested_account": 123,
"suggested_account_name": "<string>",
"suggested_account_number": "<string>",
"amount": 0,
"amount_native": 0,
"amount_book": 0,
"amortization_schedule": [
{
"journal_entry_order": "<string>",
"date": "2023-12-25",
"amount": 0,
"customer": 123,
"id": 123,
"posted": true,
"transaction": 123,
"bill_line": 123,
"debit_memo_line": 123,
"journal_entry": 123
}
],
"linked_amortizations": [
{}
],
"created_fixed_assets": [
{}
],
"reconciliation_report": "<string>",
"opposing_account_name": "<string>",
"opposing_account_number": "<string>",
"transaction_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"balance_before_transaction": 0,
"created_at": "2023-11-07T05:31:56Z",
"producer": "<string>",
"warehouse_row_key": "<string>",
"last_modified_at": "2023-11-07T05:31:56Z",
"source_group": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"customer": 123,
"entity": 123,
"counterparty_entity": 123,
"cost_allocation": 123,
"last_sync_run": 123,
"account": 123,
"debit_amount": 0,
"credit_amount": 0,
"debit_amount_book": 0,
"credit_amount_book": 0,
"debit_amount_native": 0,
"credit_amount_native": 0,
"currency": "<string>",
"exchange_rate": 0,
"exchange_rate_book": 0,
"posted_at": "2023-12-25",
"merchant_name": "<string>",
"bank_description": "<string>",
"tag_ids": [
0
],
"tag_group_ids": [
0
],
"note": "<string>",
"receipt_url": "<string>",
"external_id": "<string>",
"needs_review": true,
"draft_matches": null,
"last_lam_prediction_attempt": "2023-11-07T05:31:56Z",
"source_entity": 123,
"parent_bank_transaction": 123,
"vendor": 123,
"department": 123,
"last_modified_by": 123
}
],
"attachments": [
{
"id": 123,
"customer": 123,
"created_at": "2023-11-07T05:31:56Z",
"created_by": 123,
"created_by_name": "<string>",
"created_by_email": "<string>",
"last_modified_at": "2023-11-07T05:31:56Z",
"name": "<string>",
"url": "<string>",
"s3_path": "<string>",
"app": "<string>",
"model": "<string>",
"is_deleted": false,
"deleted_at": "2023-11-07T05:31:56Z",
"s3_content_type": "<string>",
"s3_content_length": 1073741823,
"object_id": 1073741823
}
],
"reversal_of_order": "<string>",
"reversals": [
{}
],
"is_deleted": false,
"deleted_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"last_modified_at": "2023-11-07T05:31:56Z",
"customer": 123,
"order": "<string>",
"source": "<string>",
"source_file": 123,
"close_task_id": "<string>",
"type": "bill",
"journal_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"memo": "<string>",
"currency": "<string>",
"created_automatically": true,
"date": "2023-12-25",
"ref_number": "<string>",
"reversal_of": 123,
"entities": [
123
]
}Path Parameters
Body
application/jsonapplication/x-www-form-urlencodedmultipart/form-data
bill- Billbill_payment- Bill Paymentbill_prepayment- Bill Prepaymentcheck- Checkcredit_card- Credit Cardcredit_memo- Credit Memocredit_memo_payment- Credit Memo Paymentdebit_memo- Debit Memodebit_memo_payment- Debit Memo Paymentdeposit- Depositexpense- Expenseinvoice- Invoiceintercompany_journal- Intercompany Journalinvoice_payment- Invoice Paymentjournal_entry- Journal Entrylease- Leasepayment- Paymentreceive_payment- Receive Paymentrefund- Refundrevenue_recognition- Revenue Recognitionsales_receipt- Sales Receipttransfer- Transfervendor_credit- Vendor Creditvoid_bill- Void Billvoid_bill_payment- Void Bill Paymentvoid_invoice_payment- Void Invoice Paymentvoid_credit_memo- Void Credit Memovoid_credit_memo_payment- Void Credit Memo Paymentvoid_debit_memo_payment- Void Debit Memo Paymentvoid_invoice- Void Invoiceelimination- Eliminationrevaluation- Revaluationasset_reclassification- Asset Reclassificationstatistical_allocation- Statistical Allocationallocation_true_up- Allocation True-Upasset_impairment- Asset Impairment
Available options:
bill, bill_payment, bill_prepayment, check, credit_card, credit_memo, credit_memo_payment, debit_memo, debit_memo_payment, deposit, expense, invoice, intercompany_journal, invoice_payment, journal_entry, lease, payment, receive_payment, refund, revenue_recognition, sales_receipt, transfer, vendor_credit, void_bill, void_bill_payment, void_invoice_payment, void_credit_memo, void_credit_memo_payment, void_debit_memo_payment, void_invoice, elimination, revaluation, asset_reclassification, statistical_allocation, allocation_true_up, asset_impairment Maximum string length:
1024Maximum string length:
3Maximum string length:
100Entities involved in this intercompany journal entry. Used for consolidation filtering.
Response
200 - application/json
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
bill- Billbill_payment- Bill Paymentbill_prepayment- Bill Prepaymentcheck- Checkcredit_card- Credit Cardcredit_memo- Credit Memocredit_memo_payment- Credit Memo Paymentdebit_memo- Debit Memodebit_memo_payment- Debit Memo Paymentdeposit- Depositexpense- Expenseinvoice- Invoiceintercompany_journal- Intercompany Journalinvoice_payment- Invoice Paymentjournal_entry- Journal Entrylease- Leasepayment- Paymentreceive_payment- Receive Paymentrefund- Refundrevenue_recognition- Revenue Recognitionsales_receipt- Sales Receipttransfer- Transfervendor_credit- Vendor Creditvoid_bill- Void Billvoid_bill_payment- Void Bill Paymentvoid_invoice_payment- Void Invoice Paymentvoid_credit_memo- Void Credit Memovoid_credit_memo_payment- Void Credit Memo Paymentvoid_debit_memo_payment- Void Debit Memo Paymentvoid_invoice- Void Invoiceelimination- Eliminationrevaluation- Revaluationasset_reclassification- Asset Reclassificationstatistical_allocation- Statistical Allocationallocation_true_up- Allocation True-Upasset_impairment- Asset Impairment
Available options:
bill, bill_payment, bill_prepayment, check, credit_card, credit_memo, credit_memo_payment, debit_memo, debit_memo_payment, deposit, expense, invoice, intercompany_journal, invoice_payment, journal_entry, lease, payment, receive_payment, refund, revenue_recognition, sales_receipt, transfer, vendor_credit, void_bill, void_bill_payment, void_invoice_payment, void_credit_memo, void_credit_memo_payment, void_debit_memo_payment, void_invoice, elimination, revaluation, asset_reclassification, statistical_allocation, allocation_true_up, asset_impairment Maximum string length:
1024Maximum string length:
3Maximum string length:
100Entities involved in this intercompany journal entry. Used for consolidation filtering.