PUT api/Content/v3/CheckInRequest

Request Information

URI Parameters

None.

Body Parameters

APICheckInRequest
NameDescriptionTypeAdditional 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": "11eb6ac6-7983-457d-9159-2763db361f49",
  "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>11eb6ac6-7983-457d-9159-2763db361f49</UniqueId>
  <UserUniqueId>3</UserUniqueId>
</APICheckInRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APIResult
NameDescriptionTypeAdditional 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>