POST api/v1/billing/results/page/{pageStart}/{pageSize}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pageStart | integer |
Default value is 1 |
|
| pageSize | integer |
Default value is 100 |
Body Parameters
PageableSearchFilterOfBillingResultOverviewSearchFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| Sorting | Dictionary of string [key] and string [value] |
None. |
|
| SearchFilter | BillingResultOverviewSearchFilter |
None. |
Request Formats
application/json, text/json
Sample:
{
"Sorting": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4"
},
"SearchFilter": {
"BillingName": "sample string 1",
"DateTimeFilter": {
"From": "2025-10-23T20:13:16.3746915+02:00",
"To": "2025-10-23T20:13:16.3746915+02:00"
}
}
}
text/html
Sample:
{"Sorting":{"sample string 1":"sample string 2","sample string 3":"sample string 4"},"SearchFilter":{"BillingName":"sample string 1","DateTimeFilter":{"From":"2025-10-23T20:13:16.3746915+02:00","To":"2025-10-23T20:13:16.3746915+02:00"}}}
application/xml, text/xml
Sample:
<PageableSearchFilterOfBillingResultOverviewSearchFilteroXyq3xuR xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">
<SearchFilter xmlns:d2p1="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.Billings">
<d2p1:BillingName>sample string 1</d2p1:BillingName>
<d2p1:DateTimeFilter>
<From>2025-10-23T20:13:16.3746915+02:00</From>
<To>2025-10-23T20:13:16.3746915+02:00</To>
</d2p1:DateTimeFilter>
</SearchFilter>
<Sorting xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 1</d2p1:Key>
<d2p1:Value>sample string 2</d2p1:Value>
</d2p1:KeyValueOfstringstring>
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 3</d2p1:Key>
<d2p1:Value>sample string 4</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</Sorting>
</PageableSearchFilterOfBillingResultOverviewSearchFilteroXyq3xuR>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
PagedListOfBillingResultOverview| Name | Description | Type | Additional information |
|---|---|---|---|
| Items | Collection of BillingResultOverview |
None. |
|
| PageStart | integer |
None. |
|
| PageSize | integer |
None. |
|
| TotalRows | integer |
None. |
Response Formats
application/json, text/json, text/html
Sample:
Sample not available.