GET api/Marketing/FlyerDetails?flyerId={flyerId}
Get flyer details
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| flyerId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
FlyerViewDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| PreviewUrl | string |
None. |
|
| FileUrl | string |
None. |
|
| FileSize | integer |
None. |
|
| 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. |
Response Formats
application/json, text/json
Sample:
{
"PreviewUrl": "sample string 1",
"FileUrl": "sample string 2",
"FileSize": 3,
"FlyerId": 4,
"FlyerTitle": "sample string 5",
"FlyerFileName": "sample string 6",
"CategoryId": 7,
"ParentId": 8,
"SourceId": 9,
"CategoryName": "sample string 10",
"FlyerCategoryId": 11,
"SourceName": "sample string 12"
}
application/xml, text/xml
Sample:
<FlyerViewDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Virtuoso.Domain"> <CategoryId>7</CategoryId> <CategoryName>sample string 10</CategoryName> <FileSize>0</FileSize> <FlyerCategoryId>11</FlyerCategoryId> <FlyerFileName>sample string 6</FlyerFileName> <FlyerId>4</FlyerId> <FlyerTitle>sample string 5</FlyerTitle> <ParentId>8</ParentId> <SourceId>9</SourceId> <SourceName>sample string 12</SourceName> <FileSize>3</FileSize> <FileUrl>sample string 2</FileUrl> <PreviewUrl>sample string 1</PreviewUrl> </FlyerViewDetails>