PUT api/content/v4/getcategoryeventsummary

Request Information

URI Parameters

None.

Body Parameters

CategoryEventSummaryRequest
NameDescriptionTypeAdditional 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:
<CategoryEventSummaryRequest 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>
</CategoryEventSummaryRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APICommonWrapperOfListOfCategoryEventSummary
NameDescriptionTypeAdditional information
Status

HttpStatusCode

None.

Message

string

None.

Data

Collection of CategoryEventSummary

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 100,
  "Message": "sample string 1",
  "Data": [
    {
      "CategoryId": 1,
      "CategoryName": "sample string 2",
      "TotalEvents": 3
    },
    {
      "CategoryId": 1,
      "CategoryName": "sample string 2",
      "TotalEvents": 3
    }
  ]
}

application/xml, text/xml

Sample:
<APICommonWrapperOfArrayOfCategoryEventSummaryMTRdQN6P 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:CategoryEventSummary>
      <d2p1:CategoryId>1</d2p1:CategoryId>
      <d2p1:CategoryName>sample string 2</d2p1:CategoryName>
      <d2p1:TotalEvents>3</d2p1:TotalEvents>
    </d2p1:CategoryEventSummary>
    <d2p1:CategoryEventSummary>
      <d2p1:CategoryId>1</d2p1:CategoryId>
      <d2p1:CategoryName>sample string 2</d2p1:CategoryName>
      <d2p1:TotalEvents>3</d2p1:TotalEvents>
    </d2p1:CategoryEventSummary>
  </Data>
  <Message>sample string 1</Message>
  <Status>Continue</Status>
</APICommonWrapperOfArrayOfCategoryEventSummaryMTRdQN6P>