PUT api/content/v4/getcategorylocationsummary
Request Information
URI Parameters
None.
Body Parameters
CategoryLocationSummaryRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
None. |
|
| LanguageId | integer |
None. |
|
| SectionId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": 1,
"LanguageId": 2,
"SectionId": 3
}
application/xml, text/xml
Sample:
<CategoryLocationSummaryRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/"> <CustomerId>1</CustomerId> <LanguageId>2</LanguageId> <SectionId>3</SectionId> </CategoryLocationSummaryRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APICommonWrapperOfListOfCategoryLocationSummary| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | HttpStatusCode |
None. |
|
| Message | string |
None. |
|
| Data | Collection of CategoryLocationSummary |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 100,
"Message": "sample string 1",
"Data": [
{
"CategoryId": 1,
"CategoryName": "sample string 2",
"TotalLocations": 3
},
{
"CategoryId": 1,
"CategoryName": "sample string 2",
"TotalLocations": 3
}
]
}
application/xml, text/xml
Sample:
<APICommonWrapperOfArrayOfCategoryLocationSummaryMTRdQN6P xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/">
<d2p1:CategoryLocationSummary>
<d2p1:CategoryId>1</d2p1:CategoryId>
<d2p1:CategoryName>sample string 2</d2p1:CategoryName>
<d2p1:TotalLocations>3</d2p1:TotalLocations>
</d2p1:CategoryLocationSummary>
<d2p1:CategoryLocationSummary>
<d2p1:CategoryId>1</d2p1:CategoryId>
<d2p1:CategoryName>sample string 2</d2p1:CategoryName>
<d2p1:TotalLocations>3</d2p1:TotalLocations>
</d2p1:CategoryLocationSummary>
</Data>
<Message>sample string 1</Message>
<Status>Continue</Status>
</APICommonWrapperOfArrayOfCategoryLocationSummaryMTRdQN6P>