PUT api/EventCheckIn
Request Information
URI Parameters
None.
Body Parameters
EventCheckInModel| Name | Description | Type | Additional 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": "2025-12-13T00:51:33.7234703-05: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>2025-12-13T00:51:33.7234703-05: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| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| DuplicateCheckIn | boolean |
None. |
|
| VotingCode | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2",
"DuplicateCheckIn": true,
"VotingCode": "sample string 4"
}
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> <VotingCode>sample string 4</VotingCode> </EventCheckInResultModel>