POST api/CheckIn/RegisterTotemCheckIn

Request Information

URI Parameters

None.

Body Parameters

SendTotemCheckInRequest
NameDescriptionTypeAdditional information
EventId

string

None.

TotemId

string

None.

QRCode

string

None.

Request Formats

application/json, text/json

Sample:
{
  "EventId": "sample string 1",
  "TotemId": "sample string 2",
  "QRCode": "sample string 3"
}

application/xml, text/xml

Sample:
<SendTotemCheckInRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VarGroup.Models">
  <EventId>sample string 1</EventId>
  <QRCode>sample string 3</QRCode>
  <TotemId>sample string 2</TotemId>
</SendTotemCheckInRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SendTotemCheckInResponse
NameDescriptionTypeAdditional information
ResponseDateTime

date

None.

ErrorMessage

string

None.

IsValid

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseDateTime": "2024-07-02T03:16:09.7625627+02:00",
  "ErrorMessage": "sample string 2",
  "IsValid": true
}

application/xml, text/xml

Sample:
<SendTotemCheckInResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VarGroup.Models">
  <ErrorMessage>sample string 2</ErrorMessage>
  <IsValid>true</IsValid>
  <ResponseDateTime>2024-07-02T03:16:09.7625627+02:00</ResponseDateTime>
</SendTotemCheckInResponse>