POST api/ReportApi/PaymentJournal/Download

Download open payment journal (Zahlungsjournal) as CSV file stream.

Request Information

URI Parameters

None.

Body Parameters

Date range filter

DateRangeFilter
NameDescriptionTypeAdditional information
Start

Starting date of period

date

Required

End

End date of period

date

Required

Request Formats

application/json, text/json

Sample:
{
  "Start": "2024-05-07T16:41:57.076364+02:00",
  "End": "2024-05-07T16:41:57.076364+02:00"
}

application/xml, text/xml

Sample:
<DateRangeFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/E3k.Web.CustomerPortal.Models.Api">
  <End>2024-05-07T16:41:57.076364+02:00</End>
  <Start>2024-05-07T16:41:57.076364+02:00</Start>
</DateRangeFilter>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'DateRangeFilter'.

Response Information

Resource Description

CSV formatted report.

Stream
NameDescriptionTypeAdditional information
CanRead

boolean

None.

CanSeek

boolean

None.

CanTimeout

boolean

None.

CanWrite

boolean

None.

Length

integer

None.

Position

integer

None.

ReadTimeout

integer

None.

WriteTimeout

integer

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.