Photo by Scott Graham on Unsplash

We are pleased to introduce two new endpoints in our Journals API. Specific to DraftEntries, you’ll now find Book Entries and Book Entries with Date Interval. These additions aim to provide increased possibilities for our integration partners to support theirs and our users journey into highly automated accounting, as well as ensuring a match of functionality from our deprecated SOAP API.

1. Book Entries Endpoint

URL: https://apis.e-conomic.com/journalsapi/v1.1.0/entries/draft/{journalnumber}/book

The Book Entries Endpoint facilitates the booking of all draft entries in a specific journal through a straightforward POST request with an empty body. Upon successful booking, the API will respond with a 204 Created status code.

2. Book Entries with Date Interval Endpoint

URL: https://apis.e-conomic.com/journalsapi/v1.1.0/entries/draft/{journalnumber}/bookwithdateinterval

The Book Entries with Date Interval Endpoint allows users to book draft entries within a specified time frame from a designated journal. A POST request with a JSON payload containing start and end dates facilitates this process. The API responds with a 204 Created status code upon successful processing.

The JSON payload should be in the following format:

{
"fromDate": "2019-08-24T14:15:22Z",
"toDate": "2019-08-24T14:15:22Z"
}

You’ll find the full documentation on: https://apis.e-conomic.com/#Journals..tag/DraftEntries