POST api/MediaFileMaster/GetContentCategory

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

contentCategoryResponse
NameDescriptionTypeAdditional information
ContentCategory

Collection of clsContentCategory

None.

ResponseCode

integer

None.

ResponseMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseCode": 1,
  "ResponseMessage": "sample string 2",
  "ContentCategory": [
    {
      "ContentCategory": "sample string 1",
      "ContentCategoryID": 2,
      "CreatedBy": 1,
      "CreatedOn": "2025-12-13T10:08:49.2627875+05:30",
      "IsActive": true
    },
    {
      "ContentCategory": "sample string 1",
      "ContentCategoryID": 2,
      "CreatedBy": 1,
      "CreatedOn": "2025-12-13T10:08:49.2627875+05:30",
      "IsActive": true
    }
  ]
}

application/xml, text/xml

Sample:
<contentCategoryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LiveTextBooksModel.Entity">
  <ContentCategory>
    <clsContentCategory>
      <ContentCategory>sample string 1</ContentCategory>
      <ContentCategoryID>2</ContentCategoryID>
      <CreatedBy>1</CreatedBy>
      <CreatedOn>2025-12-13T10:08:49.2627875+05:30</CreatedOn>
      <IsActive>true</IsActive>
    </clsContentCategory>
    <clsContentCategory>
      <ContentCategory>sample string 1</ContentCategory>
      <ContentCategoryID>2</ContentCategoryID>
      <CreatedBy>1</CreatedBy>
      <CreatedOn>2025-12-13T10:08:49.2627875+05:30</CreatedOn>
      <IsActive>true</IsActive>
    </clsContentCategory>
  </ContentCategory>
  <ResponseCode>1</ResponseCode>
  <ResponseMessage>sample string 2</ResponseMessage>
</contentCategoryResponse>