GET api/Marketing/Flyers

Get flyers

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of FlyerView
NameDescriptionTypeAdditional information
FlyerId

integer

None.

FlyerTitle

string

None.

FlyerFileName

string

None.

CategoryId

integer

None.

ParentId

integer

None.

SourceId

integer

None.

CategoryName

string

None.

FlyerCategoryId

integer

None.

SourceName

string

None.

FlyerBinary

Collection of byte

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "FlyerId": 1,
    "FlyerTitle": "sample string 2",
    "FlyerFileName": "sample string 3",
    "CategoryId": 4,
    "ParentId": 5,
    "SourceId": 6,
    "CategoryName": "sample string 7",
    "FlyerCategoryId": 8,
    "SourceName": "sample string 9",
    "FlyerBinary": "QEA="
  },
  {
    "FlyerId": 1,
    "FlyerTitle": "sample string 2",
    "FlyerFileName": "sample string 3",
    "CategoryId": 4,
    "ParentId": 5,
    "SourceId": 6,
    "CategoryName": "sample string 7",
    "FlyerCategoryId": 8,
    "SourceName": "sample string 9",
    "FlyerBinary": "QEA="
  }
]

application/xml, text/xml

Sample:
<ArrayOfFlyerView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Virtuoso.Domain">
  <FlyerView>
    <CategoryId>4</CategoryId>
    <CategoryName>sample string 7</CategoryName>
    <FlyerBinary>QEA=</FlyerBinary>
    <FlyerCategoryId>8</FlyerCategoryId>
    <FlyerFileName>sample string 3</FlyerFileName>
    <FlyerId>1</FlyerId>
    <FlyerTitle>sample string 2</FlyerTitle>
    <ParentId>5</ParentId>
    <SourceId>6</SourceId>
    <SourceName>sample string 9</SourceName>
  </FlyerView>
  <FlyerView>
    <CategoryId>4</CategoryId>
    <CategoryName>sample string 7</CategoryName>
    <FlyerBinary>QEA=</FlyerBinary>
    <FlyerCategoryId>8</FlyerCategoryId>
    <FlyerFileName>sample string 3</FlyerFileName>
    <FlyerId>1</FlyerId>
    <FlyerTitle>sample string 2</FlyerTitle>
    <ParentId>5</ParentId>
    <SourceId>6</SourceId>
    <SourceName>sample string 9</SourceName>
  </FlyerView>
</ArrayOfFlyerView>