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": "2024-11-24T01:10:36.9161831-06:00", "Latitude": 1.1, "Longitude": 1.1 }, { "ObjectId": 1, "ObjectTypeId": 64, "ItemId": 3, "ItemTypeId": 64, "DateUTC": "2024-11-24T01:10:36.9161831-06:00", "Latitude": 1.1, "Longitude": 1.1 }, { "ObjectId": 1, "ObjectTypeId": 64, "ItemId": 3, "ItemTypeId": 64, "DateUTC": "2024-11-24T01:10:36.9161831-06: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>2024-11-24T01:10:36.9161831-06: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>2024-11-24T01:10:36.9161831-06: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>2024-11-24T01:10:36.9161831-06: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","11/24/2024 1:10:36 AM","1.1","1.1" "1","64","3","64","11/24/2024 1:10:36 AM","1.1","1.1" "1","64","3","64","11/24/2024 1:10:36 AM","1.1","1.1"