PUT api/Content/v2/DeleteCheckIn
Request Information
URI Parameters
None.
Body Parameters
APICheckInRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| 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:
{
"CustomerId": 1,
"PaymentCheckOutMappingId": 2,
"UniqueId": "0e5479c4-1c1c-4ed3-b9ac-38ddd2c41d83",
"UserUniqueId": 4,
"LocationId": 5,
"BeerId": 6,
"Comments": "sample string 7",
"Rating": 8.1,
"PhotoBase64": "sample string 9",
"ImageType": 10,
"Latitude": 11.1,
"Longitude": 12.1,
"Id": 13,
"IsPhotoRemoved": true,
"GooglePlace": {
"Title": "sample string 1",
"Latitude": 1.0,
"Longitude": 1.0,
"PlaceId": "sample string 2"
},
"SeminarId": 15,
"EventId": 16,
"ExhibitorId": 17
}
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>6</BeerId>
<Comments>sample string 7</Comments>
<CustomerId>1</CustomerId>
<EventId>16</EventId>
<ExhibitorId>17</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>13</Id>
<ImageType>10</ImageType>
<IsPhotoRemoved>true</IsPhotoRemoved>
<Latitude>11.1</Latitude>
<LocationId>5</LocationId>
<Longitude>12.1</Longitude>
<PaymentCheckOutMappingId>2</PaymentCheckOutMappingId>
<PhotoBase64>sample string 9</PhotoBase64>
<Rating>8.1</Rating>
<SeminarId>15</SeminarId>
<UniqueId>0e5479c4-1c1c-4ed3-b9ac-38ddd2c41d83</UniqueId>
<UserUniqueId>4</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>