PUT api/Content/v3/GetStaticPageList
Request Information
URI Parameters
None.
Body Parameters
APIStaticPageRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
None. |
|
| Type | integer |
Required |
|
| ModuleType | integer |
None. |
|
| FestivalId | integer |
None. |
|
| Id | integer |
None. |
|
| LanguageId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": 1,
"Type": 2,
"ModuleType": 3,
"FestivalId": 4,
"Id": 5,
"LanguageId": 1
}
application/xml, text/xml
Sample:
<APIStaticPageRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <CustomerId>1</CustomerId> <FestivalId>4</FestivalId> <Id>5</Id> <LanguageId>1</LanguageId> <ModuleType>3</ModuleType> <Type>2</Type> </APIStaticPageRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of APIStaticPageResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Type | string |
None. |
|
| Title | string |
None. |
|
| AppMenuIcon | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Type": "sample string 2",
"Title": "sample string 3",
"AppMenuIcon": "sample string 4"
},
{
"Id": 1,
"Type": "sample string 2",
"Title": "sample string 3",
"AppMenuIcon": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfAPIStaticPageResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
<APIStaticPageResponse>
<AppMenuIcon>sample string 4</AppMenuIcon>
<Id>1</Id>
<Title>sample string 3</Title>
<Type>sample string 2</Type>
</APIStaticPageResponse>
<APIStaticPageResponse>
<AppMenuIcon>sample string 4</AppMenuIcon>
<Id>1</Id>
<Title>sample string 3</Title>
<Type>sample string 2</Type>
</APIStaticPageResponse>
</ArrayOfAPIStaticPageResponse>