PUT api/content/v4/getphotolistforcheckinrequest
Request Information
URI Parameters
None.
Body Parameters
APIGetPhotoListForCheckInRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| LocationId | integer |
None. |
|
| BeerId | integer |
None. |
|
| ProductId | integer |
None. |
|
| EventId | integer |
None. |
|
| PageNumber | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"LocationId": 1,
"BeerId": 2,
"ProductId": 3,
"EventId": 4,
"PageNumber": 5
}
application/xml, text/xml
Sample:
<APIGetPhotoListForCheckInRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <BeerId>2</BeerId> <EventId>4</EventId> <LocationId>1</LocationId> <PageNumber>5</PageNumber> <ProductId>3</ProductId> </APIGetPhotoListForCheckInRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APICommonWrapperOfAPIGetPhotoListForCheckInResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | HttpStatusCode |
None. |
|
| Message | string |
None. |
|
| Data | APIGetPhotoListForCheckInResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 100,
"Message": "sample string 1",
"Data": {
"List": [
{
"Id": 1,
"PhotoUrl": "sample string 2",
"Thumb": "sample string 3"
},
{
"Id": 1,
"PhotoUrl": "sample string 2",
"Thumb": "sample string 3"
}
],
"TotalRecords": 1
}
}
application/xml, text/xml
Sample:
<APICommonWrapperOfAPIGetPhotoListForCheckInResponseZdSfSp5S xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
<Data>
<List>
<PhotoListOfCheckIn>
<Id>1</Id>
<PhotoUrl>sample string 2</PhotoUrl>
<Thumb>sample string 3</Thumb>
</PhotoListOfCheckIn>
<PhotoListOfCheckIn>
<Id>1</Id>
<PhotoUrl>sample string 2</PhotoUrl>
<Thumb>sample string 3</Thumb>
</PhotoListOfCheckIn>
</List>
<TotalRecords>1</TotalRecords>
</Data>
<Message>sample string 1</Message>
<Status>Continue</Status>
</APICommonWrapperOfAPIGetPhotoListForCheckInResponseZdSfSp5S>