POST api/Entry

Aanmaken van een financiële boeking

Request Information

URI Parameters

None.

Body Parameters

EntryCall
NameDescriptionTypeAdditional information
Klantnummer

string

None.

Omschrijving

string

None.

UwReferentie

string

None.

Datum

date

None.

Totaalbedrag

decimal number

None.

Project

string

None.

BoekingsLijnen

Collection of EntryLine

None.

Request Formats

application/json, text/json

Sample:
{
  "Klantnummer": "sample string 1",
  "Omschrijving": "sample string 2",
  "UwReferentie": "sample string 3",
  "Datum": "2026-01-16T04:05:50.0107239+01:00",
  "Totaalbedrag": 5.1,
  "Project": "sample string 6",
  "BoekingsLijnen": [
    {
      "Grootboekrekening": "sample string 1",
      "Bedrag": 2.1,
      "Omschrijving": "sample string 3"
    },
    {
      "Grootboekrekening": "sample string 1",
      "Bedrag": 2.1,
      "Omschrijving": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<EntryCall xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Esc.Sogent.WebApi.Models">
  <BoekingsLijnen>
    <EntryLine>
      <Bedrag>2.1</Bedrag>
      <Grootboekrekening>sample string 1</Grootboekrekening>
      <Omschrijving>sample string 3</Omschrijving>
    </EntryLine>
    <EntryLine>
      <Bedrag>2.1</Bedrag>
      <Grootboekrekening>sample string 1</Grootboekrekening>
      <Omschrijving>sample string 3</Omschrijving>
    </EntryLine>
  </BoekingsLijnen>
  <Datum>2026-01-16T04:05:50.0107239+01:00</Datum>
  <Klantnummer>sample string 1</Klantnummer>
  <Omschrijving>sample string 2</Omschrijving>
  <Project>sample string 6</Project>
  <Totaalbedrag>5.1</Totaalbedrag>
  <UwReferentie>sample string 3</UwReferentie>
</EntryCall>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Boekstuknummer

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.