GET api/VisitorCard?CustomerId={CustomerId}&CardId={CardId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
Required |
|
| CardId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Gallery| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
None. |
|
| CardId | integer |
None. |
|
| Title | string |
None. |
|
| Url | string |
None. |
|
| Description | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CustomerId": 1,
"CardId": 2,
"Title": "sample string 3",
"Url": "sample string 4",
"Description": 5
},
{
"CustomerId": 1,
"CardId": 2,
"Title": "sample string 3",
"Url": "sample string 4",
"Description": 5
}
]
application/xml, text/xml
Sample:
<ArrayOfGallery xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">
<Gallery>
<CardId>2</CardId>
<CustomerId>1</CustomerId>
<Description>5</Description>
<Title>sample string 3</Title>
<Url>sample string 4</Url>
</Gallery>
<Gallery>
<CardId>2</CardId>
<CustomerId>1</CustomerId>
<Description>5</Description>
<Title>sample string 3</Title>
<Url>sample string 4</Url>
</Gallery>
</ArrayOfGallery>