PUT api/Common/GetStaticPageDetail
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
APIStaticPage| Name | Description | Type | Additional information |
|---|---|---|---|
| Description | string |
None. |
|
| Title | string |
None. |
|
| Images | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Description": "sample string 1",
"Title": "sample string 2",
"Images": [
"sample string 1",
"sample string 2"
]
}
application/xml, text/xml
Sample:
<APIStaticPage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
<Description>sample string 1</Description>
<Images xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Images>
<Title>sample string 2</Title>
</APIStaticPage>