PUT api/EventCheckIn

Request Information

URI Parameters

None.

Body Parameters

EventCheckInModel
NameDescriptionTypeAdditional information
Badge

string

None.

PersonId

integer

None.

EventTypeId

integer

Required

CheckInDate

date

Required

Field1

string

None.

Field2

string

None.

Field3

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Badge": "sample string 1",
  "PersonId": 1,
  "EventTypeId": 2,
  "CheckInDate": "2024-10-05T18:53:46.020568-07:00",
  "Field1": "sample string 3",
  "Field2": "sample string 4",
  "Field3": "sample string 5"
}

application/xml, text/xml

Sample:
<EventCheckInModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UnityWebApi.Models">
  <Badge>sample string 1</Badge>
  <CheckInDate>2024-10-05T18:53:46.020568-07:00</CheckInDate>
  <EventTypeId>2</EventTypeId>
  <Field1>sample string 3</Field1>
  <Field2>sample string 4</Field2>
  <Field3>sample string 5</Field3>
  <PersonId>1</PersonId>
</EventCheckInModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

EventCheckInResultModel
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

DuplicateCheckIn

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "DuplicateCheckIn": true
}

application/xml, text/xml

Sample:
<EventCheckInResultModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UnityWebApi.Models">
  <DuplicateCheckIn>true</DuplicateCheckIn>
  <Message>sample string 2</Message>
  <Success>true</Success>
</EventCheckInResultModel>