POST api/CheckIn/RegisterTotemCheckIn
Request Information
URI Parameters
None.
Body Parameters
SendTotemCheckInRequest| Name | Description | Type | Additional 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| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseDateTime | date |
None. |
|
| ErrorMessage | string |
None. |
|
| IsValid | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseDateTime": "2026-01-01T01:23:45.4831559+01: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>2026-01-01T01:23:45.4831559+01:00</ResponseDateTime> </SendTotemCheckInResponse>