POST associations({associationId})/News({newsId})/CheckIns
Method to create a new CheckIn
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
associationId | Association of interest |
Define this parameter in the request URI. |
checkIn | New CheckIn |
Define this parameter in the request body. |
newsId | News release 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-11-21T12:47:52.4385072-06: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-11-21T12:47:52.4385072-06: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>