GET Page?Search={Search}&Offset={Offset}&Limit={Limit}&Sort={Sort}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Search | string |
None. |
|
| Offset | integer |
Range: inclusive between 0 and 2147483647 |
|
| Limit | integer |
Range: inclusive between 0 and 1500 |
|
| Sort | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of PageView| Name | Description | Type | Additional information |
|---|---|---|---|
| PageId | integer |
None. |
|
| Code | string |
None. |
|
| Description | string |
None. |
|
| Text | string |
None. |
|
| Title | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"PageId": 1,
"Code": "sample string 2",
"Description": "sample string 3",
"Text": "sample string 4",
"Title": "sample string 5"
},
{
"PageId": 1,
"Code": "sample string 2",
"Description": "sample string 3",
"Text": "sample string 4",
"Title": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfPageView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PackageSite.Models.View">
<PageView>
<Code>sample string 2</Code>
<Description>sample string 3</Description>
<PageId>1</PageId>
<Text>sample string 4</Text>
<Title>sample string 5</Title>
</PageView>
<PageView>
<Code>sample string 2</Code>
<Description>sample string 3</Description>
<PageId>1</PageId>
<Text>sample string 4</Text>
<Title>sample string 5</Title>
</PageView>
</ArrayOfPageView>