curl --request PUT \
--url https://api.meetcampfire.com/coa/api/journal_entry/{id} \
--header 'Content-Type: application/json' \
--data '
{
"reversal_date": "2023-12-25",
"order": "<string>",
"revenue_transactions": [
123
],
"bulk_upload": true,
"chat_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"close_task_id": "<string>",
"update_reversal": false,
"journals_to_delete": [
123
],
"journal_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"memo": "<string>",
"currency": "<string>",
"exchange_rate": 0,
"exchange_rate_book": 0,
"use_average_rate": true,
"created_automatically": true,
"date": "2023-12-25",
"ref_number": "<string>",
"source": "<string>",
"source_id": "<string>",
"recurrent_journal_entry": 123,
"entity": 123,
"reversal_of": 123,
"intercompany_journal": 123,
"source_file": 123,
"chat": 123
}
'import requests
url = "https://api.meetcampfire.com/coa/api/journal_entry/{id}"
payload = {
"reversal_date": "2023-12-25",
"order": "<string>",
"revenue_transactions": [123],
"bulk_upload": True,
"chat_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"close_task_id": "<string>",
"update_reversal": False,
"journals_to_delete": [123],
"journal_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"memo": "<string>",
"currency": "<string>",
"exchange_rate": 0,
"exchange_rate_book": 0,
"use_average_rate": True,
"created_automatically": True,
"date": "2023-12-25",
"ref_number": "<string>",
"source": "<string>",
"source_id": "<string>",
"recurrent_journal_entry": 123,
"entity": 123,
"reversal_of": 123,
"intercompany_journal": 123,
"source_file": 123,
"chat": 123
}
headers = {"Content-Type": "application/json"}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
reversal_date: '2023-12-25',
order: '<string>',
revenue_transactions: [123],
bulk_upload: true,
chat_uuid: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
close_task_id: '<string>',
update_reversal: false,
journals_to_delete: [123],
journal_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
memo: '<string>',
currency: '<string>',
exchange_rate: 0,
exchange_rate_book: 0,
use_average_rate: true,
created_automatically: true,
date: '2023-12-25',
ref_number: '<string>',
source: '<string>',
source_id: '<string>',
recurrent_journal_entry: 123,
entity: 123,
reversal_of: 123,
intercompany_journal: 123,
source_file: 123,
chat: 123
})
};
fetch('https://api.meetcampfire.com/coa/api/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/journal_entry/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'reversal_date' => '2023-12-25',
'order' => '<string>',
'revenue_transactions' => [
123
],
'bulk_upload' => true,
'chat_uuid' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'close_task_id' => '<string>',
'update_reversal' => false,
'journals_to_delete' => [
123
],
'journal_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'memo' => '<string>',
'currency' => '<string>',
'exchange_rate' => 0,
'exchange_rate_book' => 0,
'use_average_rate' => true,
'created_automatically' => true,
'date' => '2023-12-25',
'ref_number' => '<string>',
'source' => '<string>',
'source_id' => '<string>',
'recurrent_journal_entry' => 123,
'entity' => 123,
'reversal_of' => 123,
'intercompany_journal' => 123,
'source_file' => 123,
'chat' => 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/journal_entry/{id}"
payload := strings.NewReader("{\n \"reversal_date\": \"2023-12-25\",\n \"order\": \"<string>\",\n \"revenue_transactions\": [\n 123\n ],\n \"bulk_upload\": true,\n \"chat_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"close_task_id\": \"<string>\",\n \"update_reversal\": false,\n \"journals_to_delete\": [\n 123\n ],\n \"journal_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"memo\": \"<string>\",\n \"currency\": \"<string>\",\n \"exchange_rate\": 0,\n \"exchange_rate_book\": 0,\n \"use_average_rate\": true,\n \"created_automatically\": true,\n \"date\": \"2023-12-25\",\n \"ref_number\": \"<string>\",\n \"source\": \"<string>\",\n \"source_id\": \"<string>\",\n \"recurrent_journal_entry\": 123,\n \"entity\": 123,\n \"reversal_of\": 123,\n \"intercompany_journal\": 123,\n \"source_file\": 123,\n \"chat\": 123\n}")
req, _ := http.NewRequest("PUT", 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.put("https://api.meetcampfire.com/coa/api/journal_entry/{id}")
.header("Content-Type", "application/json")
.body("{\n \"reversal_date\": \"2023-12-25\",\n \"order\": \"<string>\",\n \"revenue_transactions\": [\n 123\n ],\n \"bulk_upload\": true,\n \"chat_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"close_task_id\": \"<string>\",\n \"update_reversal\": false,\n \"journals_to_delete\": [\n 123\n ],\n \"journal_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"memo\": \"<string>\",\n \"currency\": \"<string>\",\n \"exchange_rate\": 0,\n \"exchange_rate_book\": 0,\n \"use_average_rate\": true,\n \"created_automatically\": true,\n \"date\": \"2023-12-25\",\n \"ref_number\": \"<string>\",\n \"source\": \"<string>\",\n \"source_id\": \"<string>\",\n \"recurrent_journal_entry\": 123,\n \"entity\": 123,\n \"reversal_of\": 123,\n \"intercompany_journal\": 123,\n \"source_file\": 123,\n \"chat\": 123\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.meetcampfire.com/coa/api/journal_entry/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"reversal_date\": \"2023-12-25\",\n \"order\": \"<string>\",\n \"revenue_transactions\": [\n 123\n ],\n \"bulk_upload\": true,\n \"chat_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"close_task_id\": \"<string>\",\n \"update_reversal\": false,\n \"journals_to_delete\": [\n 123\n ],\n \"journal_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"memo\": \"<string>\",\n \"currency\": \"<string>\",\n \"exchange_rate\": 0,\n \"exchange_rate_book\": 0,\n \"use_average_rate\": true,\n \"created_automatically\": true,\n \"date\": \"2023-12-25\",\n \"ref_number\": \"<string>\",\n \"source\": \"<string>\",\n \"source_id\": \"<string>\",\n \"recurrent_journal_entry\": 123,\n \"entity\": 123,\n \"reversal_of\": 123,\n \"intercompany_journal\": 123,\n \"source_file\": 123,\n \"chat\": 123\n}"
response = http.request(request)
puts response.read_body{
"id": 7491945,
"transactions": [
{
"id": 24429464,
"entity_name": "Top Level",
"entity_currency": "USD",
"account_name": "1200 - Accounts Receivable",
"account_number": "1200",
"tags": [],
"journal": 7491945,
"journal_order": "0004358",
"journal_memo": "Updated Journal Memo",
"journal_type": "journal_entry",
"intercompany_journal": null,
"created_automatically": false,
"journal_attachments": [],
"journal_type_name": "Journal Entry",
"invoice": null,
"bill": null,
"date_month": "07",
"date_year": "2025",
"balance_after_transaction": 15000,
"account": 180565,
"last_modified_by_name": "API User",
"account_type": "ASSET",
"files": [],
"file_names": [],
"amount": 15000,
"amount_native": 15000,
"amount_book": 15000,
"amortization_schedule": [],
"transaction_id": "285b736b-5dd4-4cd3-9c46-683bd1972043",
"debit_amount": 15000,
"credit_amount": null,
"debit_amount_book": 15000,
"credit_amount_book": null,
"debit_amount_native": 15000,
"credit_amount_native": null,
"currency": "USD",
"exchange_rate": 1,
"exchange_rate_book": 1,
"posted_at": "2025-07-31",
"merchant_name": null,
"bank_description": "Updated Line Description",
"note": null,
"balance_before_transaction": null,
"created_at": "2025-07-25T00:01:28+0000",
"external_id": null,
"needs_review": false,
"last_modified_at": "2025-07-25T00:15:30+0000",
"draft_matches": null,
"entity": 54,
"parent_bank_transaction": null,
"vendor": null,
"department": null,
"last_modified_by": 904
},
{
"id": 24429465,
"entity_name": "Top Level",
"entity_currency": "USD",
"account_name": "4000 - Sales Revenue",
"account_number": "4000",
"vendor_name": "XYZ Corporation",
"department_name": "Sales",
"parent_department_name": "Revenue",
"parent_department": 2128,
"tags": [
{
"id": 8361,
"group_name": "Revenue Type",
"parent_name": null,
"parent": null,
"name": "Product Sales",
"created_at": "2025-07-18T15:23:56+0000",
"last_modified_at": "2025-07-18T15:23:56+0000",
"group": 761
}
],
"journal": 7491945,
"journal_order": "0004358",
"journal_memo": "Updated Journal Memo",
"journal_type": "journal_entry",
"intercompany_journal": null,
"created_automatically": false,
"journal_attachments": [],
"journal_type_name": "Journal Entry",
"invoice": null,
"bill": null,
"date_month": "07",
"date_year": "2025",
"balance_after_transaction": -15000,
"account": 4001,
"last_modified_by_name": "API User",
"account_type": "REVENUE",
"files": [],
"file_names": [],
"amount": 15000,
"amount_native": 15000,
"amount_book": 15000,
"amortization_schedule": [],
"transaction_id": "a8002c20-549e-4bc6-969e-dbc2288f45bb",
"debit_amount": null,
"credit_amount": 15000,
"debit_amount_book": null,
"credit_amount_book": 15000,
"debit_amount_native": null,
"credit_amount_native": 15000,
"currency": "USD",
"exchange_rate": 1,
"exchange_rate_book": 1,
"posted_at": "2025-07-31",
"merchant_name": null,
"bank_description": "Updated Line Description",
"note": null,
"balance_before_transaction": null,
"created_at": "2025-07-25T00:01:28+0000",
"external_id": null,
"needs_review": false,
"last_modified_at": "2025-07-25T00:15:30+0000",
"draft_matches": null,
"entity": 54,
"parent_bank_transaction": null,
"vendor": 34183,
"department": 36,
"last_modified_by": 904
}
],
"attachments": [],
"invoice": null,
"reversals": [],
"entity_name": "Top Level",
"entity_currency": "USD",
"order": "0004358",
"revenue_transactions": [],
"search_vector": "'0004358':1A '07':3C '2025':2C '31':4C",
"search_text": " 0004358",
"type": "journal_entry",
"journal_id": "5be022f1-77df-4cc7-977d-1c3d7d5828c8",
"memo": "Updated Journal Memo",
"currency": "USD",
"exchange_rate": 1,
"exchange_rate_book": 1,
"created_automatically": false,
"date": "2025-07-31",
"ref_number": null,
"created_at": "2025-07-25T00:01:28+0000",
"source": "manual",
"source_id": null,
"last_modified_at": "2025-07-25T00:15:30+0000",
"recurrent_journal_entry": null,
"entity": 54,
"reversal_of": null,
"intercompany_journal": null,
"source_file": null,
"chat": null
}Update Journal Entry
Update a journal entry completely. All transactions will be replaced with the new ones provided.
Important Notes:
- Cannot update entries before closed book dates
- Must maintain double-entry bookkeeping (debits = credits)
- All existing transactions will be replaced
- Exchange rates will be recalculated if not provided
Validation Rules:
- Journal entry must balance in all currencies
- Accounts must be active
- Cannot modify entries in closed periods
curl --request PUT \
--url https://api.meetcampfire.com/coa/api/journal_entry/{id} \
--header 'Content-Type: application/json' \
--data '
{
"reversal_date": "2023-12-25",
"order": "<string>",
"revenue_transactions": [
123
],
"bulk_upload": true,
"chat_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"close_task_id": "<string>",
"update_reversal": false,
"journals_to_delete": [
123
],
"journal_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"memo": "<string>",
"currency": "<string>",
"exchange_rate": 0,
"exchange_rate_book": 0,
"use_average_rate": true,
"created_automatically": true,
"date": "2023-12-25",
"ref_number": "<string>",
"source": "<string>",
"source_id": "<string>",
"recurrent_journal_entry": 123,
"entity": 123,
"reversal_of": 123,
"intercompany_journal": 123,
"source_file": 123,
"chat": 123
}
'import requests
url = "https://api.meetcampfire.com/coa/api/journal_entry/{id}"
payload = {
"reversal_date": "2023-12-25",
"order": "<string>",
"revenue_transactions": [123],
"bulk_upload": True,
"chat_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"close_task_id": "<string>",
"update_reversal": False,
"journals_to_delete": [123],
"journal_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"memo": "<string>",
"currency": "<string>",
"exchange_rate": 0,
"exchange_rate_book": 0,
"use_average_rate": True,
"created_automatically": True,
"date": "2023-12-25",
"ref_number": "<string>",
"source": "<string>",
"source_id": "<string>",
"recurrent_journal_entry": 123,
"entity": 123,
"reversal_of": 123,
"intercompany_journal": 123,
"source_file": 123,
"chat": 123
}
headers = {"Content-Type": "application/json"}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
reversal_date: '2023-12-25',
order: '<string>',
revenue_transactions: [123],
bulk_upload: true,
chat_uuid: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
close_task_id: '<string>',
update_reversal: false,
journals_to_delete: [123],
journal_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
memo: '<string>',
currency: '<string>',
exchange_rate: 0,
exchange_rate_book: 0,
use_average_rate: true,
created_automatically: true,
date: '2023-12-25',
ref_number: '<string>',
source: '<string>',
source_id: '<string>',
recurrent_journal_entry: 123,
entity: 123,
reversal_of: 123,
intercompany_journal: 123,
source_file: 123,
chat: 123
})
};
fetch('https://api.meetcampfire.com/coa/api/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/journal_entry/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'reversal_date' => '2023-12-25',
'order' => '<string>',
'revenue_transactions' => [
123
],
'bulk_upload' => true,
'chat_uuid' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'close_task_id' => '<string>',
'update_reversal' => false,
'journals_to_delete' => [
123
],
'journal_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'memo' => '<string>',
'currency' => '<string>',
'exchange_rate' => 0,
'exchange_rate_book' => 0,
'use_average_rate' => true,
'created_automatically' => true,
'date' => '2023-12-25',
'ref_number' => '<string>',
'source' => '<string>',
'source_id' => '<string>',
'recurrent_journal_entry' => 123,
'entity' => 123,
'reversal_of' => 123,
'intercompany_journal' => 123,
'source_file' => 123,
'chat' => 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/journal_entry/{id}"
payload := strings.NewReader("{\n \"reversal_date\": \"2023-12-25\",\n \"order\": \"<string>\",\n \"revenue_transactions\": [\n 123\n ],\n \"bulk_upload\": true,\n \"chat_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"close_task_id\": \"<string>\",\n \"update_reversal\": false,\n \"journals_to_delete\": [\n 123\n ],\n \"journal_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"memo\": \"<string>\",\n \"currency\": \"<string>\",\n \"exchange_rate\": 0,\n \"exchange_rate_book\": 0,\n \"use_average_rate\": true,\n \"created_automatically\": true,\n \"date\": \"2023-12-25\",\n \"ref_number\": \"<string>\",\n \"source\": \"<string>\",\n \"source_id\": \"<string>\",\n \"recurrent_journal_entry\": 123,\n \"entity\": 123,\n \"reversal_of\": 123,\n \"intercompany_journal\": 123,\n \"source_file\": 123,\n \"chat\": 123\n}")
req, _ := http.NewRequest("PUT", 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.put("https://api.meetcampfire.com/coa/api/journal_entry/{id}")
.header("Content-Type", "application/json")
.body("{\n \"reversal_date\": \"2023-12-25\",\n \"order\": \"<string>\",\n \"revenue_transactions\": [\n 123\n ],\n \"bulk_upload\": true,\n \"chat_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"close_task_id\": \"<string>\",\n \"update_reversal\": false,\n \"journals_to_delete\": [\n 123\n ],\n \"journal_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"memo\": \"<string>\",\n \"currency\": \"<string>\",\n \"exchange_rate\": 0,\n \"exchange_rate_book\": 0,\n \"use_average_rate\": true,\n \"created_automatically\": true,\n \"date\": \"2023-12-25\",\n \"ref_number\": \"<string>\",\n \"source\": \"<string>\",\n \"source_id\": \"<string>\",\n \"recurrent_journal_entry\": 123,\n \"entity\": 123,\n \"reversal_of\": 123,\n \"intercompany_journal\": 123,\n \"source_file\": 123,\n \"chat\": 123\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.meetcampfire.com/coa/api/journal_entry/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"reversal_date\": \"2023-12-25\",\n \"order\": \"<string>\",\n \"revenue_transactions\": [\n 123\n ],\n \"bulk_upload\": true,\n \"chat_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"close_task_id\": \"<string>\",\n \"update_reversal\": false,\n \"journals_to_delete\": [\n 123\n ],\n \"journal_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"memo\": \"<string>\",\n \"currency\": \"<string>\",\n \"exchange_rate\": 0,\n \"exchange_rate_book\": 0,\n \"use_average_rate\": true,\n \"created_automatically\": true,\n \"date\": \"2023-12-25\",\n \"ref_number\": \"<string>\",\n \"source\": \"<string>\",\n \"source_id\": \"<string>\",\n \"recurrent_journal_entry\": 123,\n \"entity\": 123,\n \"reversal_of\": 123,\n \"intercompany_journal\": 123,\n \"source_file\": 123,\n \"chat\": 123\n}"
response = http.request(request)
puts response.read_body{
"id": 7491945,
"transactions": [
{
"id": 24429464,
"entity_name": "Top Level",
"entity_currency": "USD",
"account_name": "1200 - Accounts Receivable",
"account_number": "1200",
"tags": [],
"journal": 7491945,
"journal_order": "0004358",
"journal_memo": "Updated Journal Memo",
"journal_type": "journal_entry",
"intercompany_journal": null,
"created_automatically": false,
"journal_attachments": [],
"journal_type_name": "Journal Entry",
"invoice": null,
"bill": null,
"date_month": "07",
"date_year": "2025",
"balance_after_transaction": 15000,
"account": 180565,
"last_modified_by_name": "API User",
"account_type": "ASSET",
"files": [],
"file_names": [],
"amount": 15000,
"amount_native": 15000,
"amount_book": 15000,
"amortization_schedule": [],
"transaction_id": "285b736b-5dd4-4cd3-9c46-683bd1972043",
"debit_amount": 15000,
"credit_amount": null,
"debit_amount_book": 15000,
"credit_amount_book": null,
"debit_amount_native": 15000,
"credit_amount_native": null,
"currency": "USD",
"exchange_rate": 1,
"exchange_rate_book": 1,
"posted_at": "2025-07-31",
"merchant_name": null,
"bank_description": "Updated Line Description",
"note": null,
"balance_before_transaction": null,
"created_at": "2025-07-25T00:01:28+0000",
"external_id": null,
"needs_review": false,
"last_modified_at": "2025-07-25T00:15:30+0000",
"draft_matches": null,
"entity": 54,
"parent_bank_transaction": null,
"vendor": null,
"department": null,
"last_modified_by": 904
},
{
"id": 24429465,
"entity_name": "Top Level",
"entity_currency": "USD",
"account_name": "4000 - Sales Revenue",
"account_number": "4000",
"vendor_name": "XYZ Corporation",
"department_name": "Sales",
"parent_department_name": "Revenue",
"parent_department": 2128,
"tags": [
{
"id": 8361,
"group_name": "Revenue Type",
"parent_name": null,
"parent": null,
"name": "Product Sales",
"created_at": "2025-07-18T15:23:56+0000",
"last_modified_at": "2025-07-18T15:23:56+0000",
"group": 761
}
],
"journal": 7491945,
"journal_order": "0004358",
"journal_memo": "Updated Journal Memo",
"journal_type": "journal_entry",
"intercompany_journal": null,
"created_automatically": false,
"journal_attachments": [],
"journal_type_name": "Journal Entry",
"invoice": null,
"bill": null,
"date_month": "07",
"date_year": "2025",
"balance_after_transaction": -15000,
"account": 4001,
"last_modified_by_name": "API User",
"account_type": "REVENUE",
"files": [],
"file_names": [],
"amount": 15000,
"amount_native": 15000,
"amount_book": 15000,
"amortization_schedule": [],
"transaction_id": "a8002c20-549e-4bc6-969e-dbc2288f45bb",
"debit_amount": null,
"credit_amount": 15000,
"debit_amount_book": null,
"credit_amount_book": 15000,
"debit_amount_native": null,
"credit_amount_native": 15000,
"currency": "USD",
"exchange_rate": 1,
"exchange_rate_book": 1,
"posted_at": "2025-07-31",
"merchant_name": null,
"bank_description": "Updated Line Description",
"note": null,
"balance_before_transaction": null,
"created_at": "2025-07-25T00:01:28+0000",
"external_id": null,
"needs_review": false,
"last_modified_at": "2025-07-25T00:15:30+0000",
"draft_matches": null,
"entity": 54,
"parent_bank_transaction": null,
"vendor": 34183,
"department": 36,
"last_modified_by": 904
}
],
"attachments": [],
"invoice": null,
"reversals": [],
"entity_name": "Top Level",
"entity_currency": "USD",
"order": "0004358",
"revenue_transactions": [],
"search_vector": "'0004358':1A '07':3C '2025':2C '31':4C",
"search_text": " 0004358",
"type": "journal_entry",
"journal_id": "5be022f1-77df-4cc7-977d-1c3d7d5828c8",
"memo": "Updated Journal Memo",
"currency": "USD",
"exchange_rate": 1,
"exchange_rate_book": 1,
"created_automatically": false,
"date": "2025-07-31",
"ref_number": null,
"created_at": "2025-07-25T00:01:28+0000",
"source": "manual",
"source_id": null,
"last_modified_at": "2025-07-25T00:15:30+0000",
"recurrent_journal_entry": null,
"entity": 54,
"reversal_of": null,
"intercompany_journal": null,
"source_file": null,
"chat": null
}Path Parameters
Body
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
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 3-100000000000000 < x < 100000000000000-100000000000000 < x < 100000000000000100250Response
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Derived user ID of the journal entry creator. Check created_by_source before explaining provenance.
Derived name of the journal entry creator. Check created_by_source before explaining provenance.
Provenance for created_by and created_by_name: 'draft_queue_created_by', 'chart_transaction_last_modified_by_fallback', or null.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Navan data region (US/EU) for a Navan-sourced journal entry, else None.
Mirrors ramp_use_sandbox: the frontend builds the "Open in Navan" deep
link from source_id and uses this to pick the web-app host
(US -> app.navan.com, EU -> app-fra.navan.com). Navan records carry no FK to
their connection, so the region is resolved per customer and memoized to
avoid an N+1 lookup across a transaction list.
Float id of the bill paid by a Float bill-payment journal entry, else None.
Payment journal entries store the Float payment id as source_id, which has
no page of its own in Float's web app — the frontend deep-links "View on Float"
to the paid bill instead.
Documents this journal is posted from; deleting it deletes them too.
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
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 3-100000000000000 < x < 100000000000000-100000000000000 < x < 100000000000000100250