GET api/ContentCategories/{secret}/{companyId}/{imageWidth}?contentParentCategoryId={contentParentCategoryId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
secret

string

Required

companyId

string

Required

contentParentCategoryId

string

Required

imageWidth

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ContentCategory
NameDescriptionTypeAdditional information
ContentCategoryId

string

None.

Name

string

None.

Description

string

None.

ContentCategoryCustom

Collection of ContentCategoryCustom

None.

Identifier

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ContentCategoryId": "sample string 1",
    "Name": "sample string 2",
    "Description": "sample string 3",
    "ContentCategoryCustom": [
      {
        "Name": "sample string 1",
        "Type": "sample string 2",
        "Value": "sample string 3"
      },
      {
        "Name": "sample string 1",
        "Type": "sample string 2",
        "Value": "sample string 3"
      }
    ],
    "Identifier": "sample string 4"
  },
  {
    "ContentCategoryId": "sample string 1",
    "Name": "sample string 2",
    "Description": "sample string 3",
    "ContentCategoryCustom": [
      {
        "Name": "sample string 1",
        "Type": "sample string 2",
        "Value": "sample string 3"
      },
      {
        "Name": "sample string 1",
        "Type": "sample string 2",
        "Value": "sample string 3"
      }
    ],
    "Identifier": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfContentCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ML.Rest.Models">
  <ContentCategory>
    <ContentCategoryCustom>
      <ContentCategoryCustom>
        <Name>sample string 1</Name>
        <Type>sample string 2</Type>
        <Value>sample string 3</Value>
      </ContentCategoryCustom>
      <ContentCategoryCustom>
        <Name>sample string 1</Name>
        <Type>sample string 2</Type>
        <Value>sample string 3</Value>
      </ContentCategoryCustom>
    </ContentCategoryCustom>
    <ContentCategoryId>sample string 1</ContentCategoryId>
    <Description>sample string 3</Description>
    <Identifier>sample string 4</Identifier>
    <Name>sample string 2</Name>
  </ContentCategory>
  <ContentCategory>
    <ContentCategoryCustom>
      <ContentCategoryCustom>
        <Name>sample string 1</Name>
        <Type>sample string 2</Type>
        <Value>sample string 3</Value>
      </ContentCategoryCustom>
      <ContentCategoryCustom>
        <Name>sample string 1</Name>
        <Type>sample string 2</Type>
        <Value>sample string 3</Value>
      </ContentCategoryCustom>
    </ContentCategoryCustom>
    <ContentCategoryId>sample string 1</ContentCategoryId>
    <Description>sample string 3</Description>
    <Identifier>sample string 4</Identifier>
    <Name>sample string 2</Name>
  </ContentCategory>
</ArrayOfContentCategory>