GET cache/Segment

Get avalibe Segments in the system

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "Name": "sample string 1",
    "Description": "sample string 2"
  },
  {
    "Name": "sample string 1",
    "Description": "sample string 2"
  },
  {
    "Name": "sample string 1",
    "Description": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfContentSegment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PlayCode.Entities.Content">
  <ContentSegment>
    <Description>sample string 2</Description>
    <Name>sample string 1</Name>
  </ContentSegment>
  <ContentSegment>
    <Description>sample string 2</Description>
    <Name>sample string 1</Name>
  </ContentSegment>
  <ContentSegment>
    <Description>sample string 2</Description>
    <Name>sample string 1</Name>
  </ContentSegment>
</ArrayOfContentSegment>