GET associations({associationId})/representatives({representativeId})/CheckIns

Method to get a representative's check-ins

Request Information

Parameters

NameDescriptionAdditional 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-04-25T19:01:37.7997172-05:00",
    "Latitude": 1.1,
    "Longitude": 1.1
  },
  {
    "ObjectId": 1,
    "ObjectTypeId": 64,
    "ItemId": 3,
    "ItemTypeId": 64,
    "DateUTC": "2024-04-25T19:01:37.7997172-05:00",
    "Latitude": 1.1,
    "Longitude": 1.1
  },
  {
    "ObjectId": 1,
    "ObjectTypeId": 64,
    "ItemId": 3,
    "ItemTypeId": 64,
    "DateUTC": "2024-04-25T19:01:37.7997172-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>2024-04-25T19:01:37.7997172-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>2024-04-25T19:01:37.7997172-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>2024-04-25T19:01:37.7997172-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","4/25/2024 7:01:37 PM","1.1","1.1"
"1","64","3","64","4/25/2024 7:01:37 PM","1.1","1.1"
"1","64","3","64","4/25/2024 7:01:37 PM","1.1","1.1"