GET api/TextLogoBlacklist/GetAll

Documentation for 'GetAll'.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "text": "sample string 1",
    "active": true,
    "id": 3
  },
  {
    "text": "sample string 1",
    "active": true,
    "id": 3
  },
  {
    "text": "sample string 1",
    "active": true,
    "id": 3
  }
]

application/xml, text/xml

Sample:
<ArrayOfTextLogoBlacklistVM xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <TextLogoBlacklistVM>
    <Id>3</Id>
    <Text>sample string 1</Text>
    <Active>true</Active>
  </TextLogoBlacklistVM>
  <TextLogoBlacklistVM>
    <Id>3</Id>
    <Text>sample string 1</Text>
    <Active>true</Active>
  </TextLogoBlacklistVM>
  <TextLogoBlacklistVM>
    <Id>3</Id>
    <Text>sample string 1</Text>
    <Active>true</Active>
  </TextLogoBlacklistVM>
</ArrayOfTextLogoBlacklistVM>