POST api/CheckIn/RegisterCheckInForEvent

Request Information

URI Parameters

None.

Body Parameters

SendCheckInRequest
NameDescriptionTypeAdditional information
EventId

string

None.

QRCode

string

None.

value1

string

None.

value2

string

None.

value3

string

None.

Email

string

None.

LastUpdateDateTime

date

None.

ClientVersion

string

None.

Request Formats

application/json, text/json

Sample:
{
  "EventId": "sample string 1",
  "QRCode": "sample string 2",
  "value1": "sample string 3",
  "value2": "sample string 4",
  "value3": "sample string 5",
  "Email": "sample string 6",
  "LastUpdateDateTime": "2024-07-02T02:54:43.8265633+02:00",
  "ClientVersion": "sample string 8"
}

application/xml, text/xml

Sample:
<SendCheckInRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VarGroup.Models">
  <ClientVersion>sample string 8</ClientVersion>
  <Email>sample string 6</Email>
  <LastUpdateDateTime>2024-07-02T02:54:43.8265633+02:00</LastUpdateDateTime>
  <EventId>sample string 1</EventId>
  <QRCode>sample string 2</QRCode>
  <value1>sample string 3</value1>
  <value2>sample string 4</value2>
  <value3>sample string 5</value3>
</SendCheckInRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SendCheckInResponse
NameDescriptionTypeAdditional information
EventId

string

None.

ResponseDateTime

date

None.

ErrorMessage

string

None.

IsValid

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "EventId": "sample string 1",
  "ResponseDateTime": "2024-07-02T02:54:43.8265633+02:00",
  "ErrorMessage": "sample string 3",
  "IsValid": true
}

application/xml, text/xml

Sample:
<SendCheckInResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VarGroup.Models">
  <ErrorMessage>sample string 3</ErrorMessage>
  <IsValid>true</IsValid>
  <ResponseDateTime>2024-07-02T02:54:43.8265633+02:00</ResponseDateTime>
  <EventId>sample string 1</EventId>
</SendCheckInResponse>