ConcourseConnect

Open Source Initiative (OSI) PostgreSQL Java

GET checkinList

Returns the check-in points (latitude/longitude) over time for a given profile. Useful for showing related check-ins on a map, particularly for events.

URL

https://demo.onsocialcloud.com/api/checkinList

Parameters

uniqueId

The profile unique id in which the check-ins relate to

minTeamMemberLevel
(optional)

Restrict results to a minimum team level (manager, champion, vip, member, etc.)

startDate
(optional)

A timestamp of the beginning date range to include

endDate
(optional)

A timestamp of the ending date range to include

Example Request

https://www.concursive.com/api/checkinList?format=json&uniqueId=storm-mapping-9-28-15

Example Result

[  
   {  
      "status":{  
         "code":0,
         "name":"checkInList",
         "count":8,
         "total":262
      },
      "objectList":[  
         {  
            "recordNumber":1,
            "recordName":"checkIn",
            "latitude":"36.90036392211914",
            "longitude":"-76.30355834960938"
         },
         {  
            "recordNumber":2,
            "recordName":"checkIn",
            "latitude":"36.90022277832031",
            "longitude":"-76.3039779663086"
         },
         {  
            "recordNumber":3,
            "recordName":"checkIn",
            "latitude":"36.90020370483398",
            "longitude":"-76.30391693115234"
         },
         {  
            "recordNumber":4,
            "recordName":"checkIn",
            "latitude":"36.90019989013672",
            "longitude":"-76.30390930175781"
         },
         {  
            "recordNumber":5,
            "recordName":"checkIn",
            "latitude":"36.90023803710938",
            "longitude":"-76.30390167236328"
         },
         {  
            "recordNumber":6,
            "recordName":"checkIn",
            "latitude":"36.9002571105957",
            "longitude":"-76.30386352539062"
         },
         {  
            "recordNumber":7,
            "recordName":"checkIn",
            "latitude":"36.90029525756836",
            "longitude":"-76.30377197265625"
         },
         {  
            "recordNumber":8,
            "recordName":"checkIn",
            "latitude":"36.90032577514648",
            "longitude":"-76.30376434326172"
         }
      ]
   }
]

Sign in to add your comment.