PUT api/Content/v2/GetPhotoListForCheckInRequest
Request Information
URI Parameters
None.
Body Parameters
APIGetPhotoListForCheckInRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
None. |
|
| UniqueId | globally unique identifier |
None. |
|
| UserUniqueId | integer |
None. |
|
| LocationId | integer |
None. |
|
| BeerId | integer |
None. |
|
| EventId | integer |
None. |
|
| PageNumber | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": 1,
"UniqueId": "630160e0-98b1-4cbd-8d81-69905a52e0b4",
"UserUniqueId": 3,
"LocationId": 4,
"BeerId": 5,
"EventId": 6,
"PageNumber": 7
}
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>5</BeerId> <CustomerId>1</CustomerId> <EventId>6</EventId> <LocationId>4</LocationId> <PageNumber>7</PageNumber> <UniqueId>630160e0-98b1-4cbd-8d81-69905a52e0b4</UniqueId> <UserUniqueId>3</UserUniqueId> </APIGetPhotoListForCheckInRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIGetPhotoListForCheckInResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| List | Collection of PhotoListOfCheckIn |
None. |
|
| TotalRecords | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"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:
<APIGetPhotoListForCheckInResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
<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>
</APIGetPhotoListForCheckInResponse>