POST associations({associationId})/events({eventId})/CheckIns

Method to create a new CheckIn

Request Information

Parameters

NameDescriptionAdditional information
associationId
Association of interest

Define this parameter in the request URI.

checkIn
New CheckIn

Define this parameter in the request body.

eventId
Event id that has been checked into

Define this parameter in the request URI.

Request body formats

application/json, text/json

Sample:
{
  "ObjectId": 1,
  "ObjectTypeId": 64,
  "ItemId": 3,
  "ItemTypeId": 64,
  "DateUTC": "2024-04-16T06:31:33.8510353-05:00",
  "Latitude": 1.1,
  "Longitude": 1.1
}

application/xml, text/xml

Sample:
<CheckInResource xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MicroNet.WebAPI.Classes.Resources">
  <DateUTC>2024-04-16T06:31:33.8510353-05:00</DateUTC>
  <ItemId>3</ItemId>
  <ItemTypeId>64</ItemTypeId>
  <Latitude>1.1</Latitude>
  <Longitude>1.1</Longitude>
  <ObjectId>1</ObjectId>
  <ObjectTypeId>64</ObjectTypeId>
</CheckInResource>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

True if insert was a success

Response body formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>