POST api/v1/articles/page/{pageStart}/{pageSize}
Gets the article overviews.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pageStart | integer |
Default value is 1 |
|
| pageSize | integer |
Default value is 100 |
Body Parameters
PageableSearchFilterOfArticleOverviewSearchFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| Sorting | Dictionary of string [key] and string [value] |
None. |
|
| SearchFilter | ArticleOverviewSearchFilter |
None. |
Request Formats
application/json, text/json
Sample:
{
"Sorting": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4"
},
"SearchFilter": {
"ArticleNumber": "sample string 1",
"ArticleName": "sample string 2",
"IsActive": true
}
}
text/html
Sample:
{"Sorting":{"sample string 1":"sample string 2","sample string 3":"sample string 4"},"SearchFilter":{"ArticleNumber":"sample string 1","ArticleName":"sample string 2","IsActive":true}}
application/xml, text/xml
Sample:
<PageableSearchFilterOfArticleOverviewSearchFilterr5mCN_Pkb 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.Articles">
<d2p1:ArticleName>sample string 2</d2p1:ArticleName>
<d2p1:ArticleNumber>sample string 1</d2p1:ArticleNumber>
<d2p1:IsActive>true</d2p1:IsActive>
</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>
</PageableSearchFilterOfArticleOverviewSearchFilterr5mCN_Pkb>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
PagedListOfArticleOverview| Name | Description | Type | Additional information |
|---|---|---|---|
| Items | Collection of ArticleOverview |
None. |
|
| PageStart | integer |
None. |
|
| PageSize | integer |
None. |
|
| TotalRows | integer |
None. |
Response Formats
application/json, text/json, text/html
Sample:
Sample not available.