PUT api/Content/v3/GetCheckInDetail

Request Information

URI Parameters

None.

Body Parameters

APIGetCheckInDetailRequest
NameDescriptionTypeAdditional information
CustomerId

integer

None.

UniqueId

globally unique identifier

None.

UserUniqueId

integer

None.

CheckinHistoryId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": 1,
  "UniqueId": "9cd28cdc-9c09-42f1-aabb-c9fb12b75427",
  "UserUniqueId": 3,
  "CheckinHistoryId": 4
}

application/xml, text/xml

Sample:
<APIGetCheckInDetailRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <CheckinHistoryId>4</CheckinHistoryId>
  <CustomerId>1</CustomerId>
  <UniqueId>9cd28cdc-9c09-42f1-aabb-c9fb12b75427</UniqueId>
  <UserUniqueId>3</UserUniqueId>
</APIGetCheckInDetailRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APICheckInDetailResponse
NameDescriptionTypeAdditional information
Id

integer

None.

CreatedDate

integer

None.

Comment

string

None.

ContactId

integer

None.

FirstName

string

None.

LastName

string

None.

MiddleName

string

None.

ProfileUrl

string

None.

BeerId

integer

None.

Beer

_Beer

None.

LocationId

integer

None.

Location

_Location

None.

CheckinPhoto

string

None.

Rating

decimal number

None.

TotalToast

integer

None.

TotalComments

integer

None.

IsToasted

boolean

None.

GooglePlace

APIGooglePlace

None.

IsLike

boolean

None.

LikeCount

integer

None.

AllowUpdate

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "CreatedDate": 2,
  "Comment": "sample string 3",
  "ContactId": 4,
  "FirstName": "sample string 5",
  "LastName": "sample string 6",
  "MiddleName": "sample string 7",
  "ProfileUrl": "sample string 8",
  "BeerId": 9,
  "Beer": {
    "Id": 1,
    "Name": "sample string 2",
    "Logo": "sample string 3",
    "Style": "sample string 4",
    "CustomerName": "sample string 5",
    "CreatedDate": 6,
    "IsAlreadyInWishList": true,
    "IsAlreadyInFav": true,
    "score": 9,
    "uuid": "sample string 10"
  },
  "LocationId": 10,
  "Location": {
    "Id": 1,
    "Title": "sample string 1",
    "Address": "sample string 2",
    "City": "sample string 3",
    "State": "sample string 4",
    "Country": "sample string 5",
    "Latitude": 6.0,
    "Longitude": 7.0,
    "ZipCode": "sample string 8",
    "Thumb": "sample string 9",
    "CreatedDate": 10,
    "IsAlreadyInWishList": true,
    "IsAlreadyInFav": true
  },
  "CheckinPhoto": "sample string 11",
  "Rating": 1.1,
  "TotalToast": 12,
  "TotalComments": 13,
  "IsToasted": true,
  "GooglePlace": {
    "Title": "sample string 1",
    "Latitude": 1.0,
    "Longitude": 1.0,
    "PlaceId": "sample string 2"
  },
  "IsLike": true,
  "LikeCount": 16,
  "AllowUpdate": true
}

application/xml, text/xml

Sample:
<APICheckInDetailResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <AllowUpdate>true</AllowUpdate>
  <Beer>
    <CreatedDate>6</CreatedDate>
    <CustomerName>sample string 5</CustomerName>
    <Id>1</Id>
    <IsAlreadyInFav>true</IsAlreadyInFav>
    <IsAlreadyInWishList>true</IsAlreadyInWishList>
    <Logo>sample string 3</Logo>
    <Name>sample string 2</Name>
    <Style>sample string 4</Style>
    <score>9</score>
    <uuid>sample string 10</uuid>
  </Beer>
  <BeerId>9</BeerId>
  <CheckinPhoto>sample string 11</CheckinPhoto>
  <Comment>sample string 3</Comment>
  <ContactId>4</ContactId>
  <CreatedDate>2</CreatedDate>
  <FirstName>sample string 5</FirstName>
  <GooglePlace>
    <Latitude>1</Latitude>
    <Longitude>1</Longitude>
    <PlaceId>sample string 2</PlaceId>
    <Title>sample string 1</Title>
  </GooglePlace>
  <Id>1</Id>
  <IsLike>true</IsLike>
  <IsToasted>true</IsToasted>
  <LastName>sample string 6</LastName>
  <LikeCount>16</LikeCount>
  <Location>
    <Address>sample string 2</Address>
    <City>sample string 3</City>
    <Country>sample string 5</Country>
    <CreatedDate>10</CreatedDate>
    <Id>1</Id>
    <IsAlreadyInFav>true</IsAlreadyInFav>
    <IsAlreadyInWishList>true</IsAlreadyInWishList>
    <Latitude>6</Latitude>
    <Longitude>7</Longitude>
    <State>sample string 4</State>
    <Thumb>sample string 9</Thumb>
    <Title>sample string 1</Title>
    <ZipCode>sample string 8</ZipCode>
  </Location>
  <LocationId>10</LocationId>
  <MiddleName>sample string 7</MiddleName>
  <ProfileUrl>sample string 8</ProfileUrl>
  <Rating>1.1</Rating>
  <TotalComments>13</TotalComments>
  <TotalToast>12</TotalToast>
</APICheckInDetailResponse>