GET
/
consumers
/
{consumer_id}
/
accounting
/
journal
/
entries
/
{journal_entry_id}
curl --request GET \
  --url https://api.chift.eu/consumers/{consumer_id}/accounting/journal/entries/{journal_entry_id} \
  --header 'Authorization: Bearer <token>'
{
  "reference": "<string>",
  "due_date": "2023-12-25",
  "journal_id": "<string>",
  "name": "<string>",
  "journal_name": "<string>",
  "date": "1970-01-01",
  "posted": false,
  "id": "<string>",
  "items": []
}

Authorizations

Authorization
string
header
required

This access token needs to be included in each of your request to the Chift API.

Path Parameters

consumer_id
string
required
journal_entry_id
string
required

Query Parameters

folder_id
string

Response

200
application/json
Successful Response
journal_id
string
required
journal_name
string
required
id
string
required
reference
string
due_date
string
name
string
date
string
default:1970-01-01

Accounting date of the journal entry. It is automatically set to '1970-01-01' if the value is not available/empty in the accounting system.

posted
boolean
default:false
items
object[]