GET api/TextLogoBlacklist/Get?orderBy={orderBy}

Documentation for 'Get'.

Request Information

Parameters

NameDescriptionAdditional information
predicate
Documentation for 'predicate'.

None.

paging
Documentation for 'paging'.

None.

orderBy
Documentation for 'orderBy'.

Define this parameter in the request URI.

direction
Documentation for 'direction'.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "numRows": 1,
  "identity": "Id",
  "items": [
    {
      "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:
<PagingDataVMOfTextLogoBlacklistVM xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <NumRows>1</NumRows>
  <Items>
    <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>
  </Items>
</PagingDataVMOfTextLogoBlacklistVM>