GET api/PriceList/dump?debnr={debnr}&polldate={polldate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| debnr | string |
Required |
|
| polldate | date |
None. |
Body Parameters
None.
Response Information
Resource Description
PriceDefinition| Name | Description | Type | Additional information |
|---|---|---|---|
| DebNr | string |
None. |
|
| PollDate | date |
None. |
|
| Lines | Collection of PriceDefinitionLine |
None. |
Response Formats
application/json, text/json
Sample:
{
"DebNr": "sample string 1",
"PollDate": "2025-12-06T05:14:09.1261764+01:00",
"Lines": [
{
"ItemCode": "sample string 1",
"prijsper1": 1.1,
"prijsper10": 1.1,
"prijsper100": 1.1,
"prijsper1000": 1.1,
"prijsper10000": 1.1
},
{
"ItemCode": "sample string 1",
"prijsper1": 1.1,
"prijsper10": 1.1,
"prijsper100": 1.1,
"prijsper1000": 1.1,
"prijsper10000": 1.1
}
]
}
application/xml, text/xml
Sample:
<PriceDefinition xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<DebNr>sample string 1</DebNr>
<PollDate>2025-12-06T05:14:09.1261764+01:00</PollDate>
<Lines>
<PriceDefinitionLine>
<ItemCode>sample string 1</ItemCode>
<prijsper1>1.1</prijsper1>
<prijsper10>1.1</prijsper10>
<prijsper100>1.1</prijsper100>
<prijsper1000>1.1</prijsper1000>
<prijsper10000>1.1</prijsper10000>
</PriceDefinitionLine>
<PriceDefinitionLine>
<ItemCode>sample string 1</ItemCode>
<prijsper1>1.1</prijsper1>
<prijsper10>1.1</prijsper10>
<prijsper100>1.1</prijsper100>
<prijsper1000>1.1</prijsper1000>
<prijsper10000>1.1</prijsper10000>
</PriceDefinitionLine>
</Lines>
</PriceDefinition>