POST api/ReportApi/OpenList/Download
Download open list (Offene Posten) as CSV file stream.
Request Information
URI Parameters
None.
Body Parameters
Due date filter with sorting
ExtendedDueDateFilterName | Description | Type | Additional information |
---|---|---|---|
IncludePrePayments |
Include pre payments in the data set. Default = false |
boolean |
None. |
Sorting |
Data set sorting. Default: Target = Name, Descending = false |
ReportSorting |
None. |
Due |
Due date |
date |
Required |
Request Formats
application/json, text/json
Sample:
{ "IncludePrePayments": true, "Sorting": { "Target": 0, "Descending": true }, "Due": "2024-12-19T13:33:29.9929457+01:00" }
application/xml, text/xml
Sample:
<ExtendedDueDateFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/E3k.Web.CustomerPortal.Models.Api"> <Due>2024-12-19T13:33:29.9929457+01:00</Due> <IncludePrePayments>true</IncludePrePayments> <Sorting> <Descending>true</Descending> <Target>Name</Target> </Sorting> </ExtendedDueDateFilter>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
CSV formatted report.
StreamName | Description | Type | Additional 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.