POST api/CheckIn/RegisterOperatorCheckIn

Request Information

URI Parameters

None.

Body Parameters

SendOperatorCheckInRequest
NameDescriptionTypeAdditional information
EventId

string

None.

EventPersonOperatorId

string

None.

QRCode

string

None.

Email

string

None.

LastUpdateDateTime

date

None.

ClientVersion

string

None.

Request Formats

application/json, text/json

Sample:
{
  "EventId": "sample string 1",
  "EventPersonOperatorId": "sample string 2",
  "QRCode": "sample string 3",
  "Email": "sample string 4",
  "LastUpdateDateTime": "2024-07-02T02:41:14.279093+02:00",
  "ClientVersion": "sample string 6"
}

application/xml, text/xml

Sample:
<SendOperatorCheckInRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VarGroup.Models">
  <ClientVersion>sample string 6</ClientVersion>
  <Email>sample string 4</Email>
  <LastUpdateDateTime>2024-07-02T02:41:14.279093+02:00</LastUpdateDateTime>
  <EventId>sample string 1</EventId>
  <EventPersonOperatorId>sample string 2</EventPersonOperatorId>
  <QRCode>sample string 3</QRCode>
</SendOperatorCheckInRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SendOperatorCheckInResponse
NameDescriptionTypeAdditional information
ResponseDateTime

date

None.

ErrorMessage

string

None.

IsValid

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseDateTime": "2024-07-02T02:41:14.2947113+02:00",
  "ErrorMessage": "sample string 2",
  "IsValid": true
}

application/xml, text/xml

Sample:
<SendOperatorCheckInResponse 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-02T02:41:14.2947113+02:00</ResponseDateTime>
</SendOperatorCheckInResponse>