PUT api/Content/v2/DeleteCheckIn
Request Information
URI Parameters
None.
Body Parameters
APICheckInRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | 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:
{
"CustomerId": 1,
"UniqueId": "dcfed664-d725-4cfb-8b59-a93817123d39",
"UserUniqueId": 3,
"LocationId": 4,
"BeerId": 5,
"Comments": "sample string 6",
"Rating": 7.1,
"PhotoBase64": "sample string 8",
"ImageType": 9,
"Latitude": 10.1,
"Longitude": 11.1,
"Id": 12,
"IsPhotoRemoved": true,
"GooglePlace": {
"Title": "sample string 1",
"Latitude": 1.0,
"Longitude": 1.0,
"PlaceId": "sample string 2"
},
"SeminarId": 14,
"EventId": 15,
"ExhibitorId": 16
}
application/xml, text/xml
Sample:
<APICheckInRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
<BeerId>5</BeerId>
<Comments>sample string 6</Comments>
<CustomerId>1</CustomerId>
<EventId>15</EventId>
<ExhibitorId>16</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>12</Id>
<ImageType>9</ImageType>
<IsPhotoRemoved>true</IsPhotoRemoved>
<Latitude>10.1</Latitude>
<LocationId>4</LocationId>
<Longitude>11.1</Longitude>
<PhotoBase64>sample string 8</PhotoBase64>
<Rating>7.1</Rating>
<SeminarId>14</SeminarId>
<UniqueId>dcfed664-d725-4cfb-8b59-a93817123d39</UniqueId>
<UserUniqueId>3</UserUniqueId>
</APICheckInRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<APIResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <Message>sample string 2</Message> <Status>true</Status> </APIResult>