PUT api/Content/v3/DeleteCheckIn
Request Information
URI Parameters
None.
Body Parameters
APICheckInRequestName | 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": "534cd6a8-2a37-4ab7-9ca5-1ec3676fa1df", "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> <Latitude>1</Latitude> <Longitude>1</Longitude> <PlaceId>sample string 2</PlaceId> <Title>sample string 1</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>534cd6a8-2a37-4ab7-9ca5-1ec3676fa1df</UniqueId> <UserUniqueId>3</UserUniqueId> </APICheckInRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResultName | 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>