GET associations({associationId})/representatives({representativeId})/CheckIns
Method to get a representative's check-ins
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| associationId | Association of interest |
Define this parameter in the request URI. |
| representativeId | Representative of interest |
Define this parameter in the request URI. |
Response Information
Check-ins made by the representative
Response body formats
application/json, text/json
Sample:
[
{
"ObjectId": 1,
"ObjectTypeId": 64,
"ItemId": 3,
"ItemTypeId": 64,
"DateUTC": "2025-10-30T12:32:43.0858832-05:00",
"Latitude": 1.1,
"Longitude": 1.1
},
{
"ObjectId": 1,
"ObjectTypeId": 64,
"ItemId": 3,
"ItemTypeId": 64,
"DateUTC": "2025-10-30T12:32:43.0858832-05:00",
"Latitude": 1.1,
"Longitude": 1.1
},
{
"ObjectId": 1,
"ObjectTypeId": 64,
"ItemId": 3,
"ItemTypeId": 64,
"DateUTC": "2025-10-30T12:32:43.0858832-05:00",
"Latitude": 1.1,
"Longitude": 1.1
}
]
application/xml, text/xml
Sample:
<ArrayOfCheckInResource xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MicroNet.WebAPI.Classes.Resources">
<CheckInResource>
<DateUTC>2025-10-30T12:32:43.0858832-05:00</DateUTC>
<ItemId>3</ItemId>
<ItemTypeId>64</ItemTypeId>
<Latitude>1.1</Latitude>
<Longitude>1.1</Longitude>
<ObjectId>1</ObjectId>
<ObjectTypeId>64</ObjectTypeId>
</CheckInResource>
<CheckInResource>
<DateUTC>2025-10-30T12:32:43.0858832-05:00</DateUTC>
<ItemId>3</ItemId>
<ItemTypeId>64</ItemTypeId>
<Latitude>1.1</Latitude>
<Longitude>1.1</Longitude>
<ObjectId>1</ObjectId>
<ObjectTypeId>64</ObjectTypeId>
</CheckInResource>
<CheckInResource>
<DateUTC>2025-10-30T12:32:43.0858832-05:00</DateUTC>
<ItemId>3</ItemId>
<ItemTypeId>64</ItemTypeId>
<Latitude>1.1</Latitude>
<Longitude>1.1</Longitude>
<ObjectId>1</ObjectId>
<ObjectTypeId>64</ObjectTypeId>
</CheckInResource>
</ArrayOfCheckInResource>
text/csv
Sample:
ObjectId,ObjectTypeId,ItemId,ItemTypeId,DateUTC,Latitude,Longitude "1","64","3","64","10/30/2025 12:32:43 PM","1.1","1.1" "1","64","3","64","10/30/2025 12:32:43 PM","1.1","1.1" "1","64","3","64","10/30/2025 12:32:43 PM","1.1","1.1"