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

Documentation for 'GetAll'.

Request Information

Parameters

NameDescriptionAdditional information
paging
Documentation for 'paging'.

Define this parameter in the request body.

orderBy
Documentation for 'orderBy'.

Define this parameter in the request URI.

direction
Documentation for 'direction'.

Define this parameter in the request URI.

Request body formats

application/json, text/json

Sample:
{
  "startRowIndex": 1,
  "maximunRows": 2,
  "totalRecords": 3
}

application/xml, text/xml

Sample:
<Paging xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <StartRowIndex>1</StartRowIndex>
  <MaximunRows>2</MaximunRows>
  <TotalRecords>3</TotalRecords>
</Paging>

application/x-www-form-urlencoded

Sample:

Sample not available.

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>