PUT api/content/v4/checkinrequest
Request Information
URI Parameters
None.
Body Parameters
CheckInRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ProductId | integer |
None. |
|
| PassId | integer |
None. |
|
| LoyaltyEventId | integer |
None. |
|
| CustomerId | integer |
None. |
|
| PaymentCheckOutMappingId | integer |
None. |
|
| UniqueId | globally unique identifier |
None. |
|
| UserUniqueId | integer |
None. |
|
| LocationId | integer |
None. |
|
| BeerId | integer |
None. |
|
| Comments | string |
None. |
|
| Rating | decimal number |
None. |
|
| PhotoBase64 | string |
None. |
|
| ImageType | integer |
None. |
|
| Latitude | decimal number |
None. |
|
| Longitude | decimal number |
None. |
|
| Id | integer |
None. |
|
| IsPhotoRemoved | boolean |
None. |
|
| GooglePlace | APIGooglePlace |
None. |
|
| SeminarId | integer |
None. |
|
| EventId | integer |
None. |
|
| ExhibitorId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ProductId": 1,
"PassId": 2,
"LoyaltyEventId": 3,
"CustomerId": 4,
"PaymentCheckOutMappingId": 5,
"UniqueId": "977297fd-d73c-42d1-a5f4-09013d894548",
"UserUniqueId": 7,
"LocationId": 8,
"BeerId": 9,
"Comments": "sample string 10",
"Rating": 11.1,
"PhotoBase64": "sample string 12",
"ImageType": 13,
"Latitude": 14.1,
"Longitude": 15.1,
"Id": 16,
"IsPhotoRemoved": true,
"GooglePlace": {
"Title": "sample string 1",
"Latitude": 1.0,
"Longitude": 1.0,
"PlaceId": "sample string 2"
},
"SeminarId": 18,
"EventId": 19,
"ExhibitorId": 20
}
application/xml, text/xml
Sample:
<CheckInRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
<BeerId>9</BeerId>
<Comments>sample string 10</Comments>
<CustomerId>4</CustomerId>
<EventId>19</EventId>
<ExhibitorId>20</ExhibitorId>
<GooglePlace xmlns:d2p1="http://schemas.datacontract.org/2004/07/">
<d2p1:Latitude>1</d2p1:Latitude>
<d2p1:Longitude>1</d2p1:Longitude>
<d2p1:PlaceId>sample string 2</d2p1:PlaceId>
<d2p1:Title>sample string 1</d2p1:Title>
</GooglePlace>
<Id>16</Id>
<ImageType>13</ImageType>
<IsPhotoRemoved>true</IsPhotoRemoved>
<Latitude>14.1</Latitude>
<LocationId>8</LocationId>
<Longitude>15.1</Longitude>
<PaymentCheckOutMappingId>5</PaymentCheckOutMappingId>
<PhotoBase64>sample string 12</PhotoBase64>
<Rating>11.1</Rating>
<SeminarId>18</SeminarId>
<UniqueId>977297fd-d73c-42d1-a5f4-09013d894548</UniqueId>
<UserUniqueId>7</UserUniqueId>
<LoyaltyEventId>3</LoyaltyEventId>
<PassId>2</PassId>
<ProductId>1</ProductId>
</CheckInRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APICommonWrapperOfAPIResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | HttpStatusCode |
None. |
|
| Message | string |
None. |
|
| Data | APIResult |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 100,
"Message": "sample string 1",
"Data": {
"Status": true,
"Message": "sample string 2"
}
}
application/xml, text/xml
Sample:
<APICommonWrapperOfAPIResultZdSfSp5S xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
<Data>
<Message>sample string 2</Message>
<Status>true</Status>
</Data>
<Message>sample string 1</Message>
<Status>Continue</Status>
</APICommonWrapperOfAPIResultZdSfSp5S>