PUT api/Conference/RemoveCheckInLikeHistory

Request Information

URI Parameters

None.

Body Parameters

APICheckInLikeRequest
NameDescriptionTypeAdditional information
Id

integer

None.

CheckinId

integer

None.

UserUniqueId

integer

None.

UniqueId

globally unique identifier

None.

CustomerId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "CheckinId": 2,
  "UserUniqueId": 3,
  "UniqueId": "18c78844-2acc-4640-933f-a154426638c1",
  "CustomerId": 5
}

application/xml, text/xml

Sample:
<APICheckInLikeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <CheckinId>2</CheckinId>
  <CustomerId>5</CustomerId>
  <Id>1</Id>
  <UniqueId>18c78844-2acc-4640-933f-a154426638c1</UniqueId>
  <UserUniqueId>3</UserUniqueId>
</APICheckInLikeRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APICheckInLikeResponse
NameDescriptionTypeAdditional information
Id

integer

None.

Status

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Status": true
}

application/xml, text/xml

Sample:
<APICheckInLikeResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <Id>1</Id>
  <Status>true</Status>
</APICheckInLikeResponse>