Check for any items that are after fromthisid
To determine if there are items that have been added, and if so return up to 30 IDs
        GET
    /location/poll/{fromthisid}/{returncount}
  
  curl \
 --request GET 'https://YOURSITE.infoodle.com/apiv2/location/poll/4/30' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
    
        Response examples (200)
  
  {
  "totalitemsavailable": 67,
  "firstid": 1,
  "finalid": 259,
  "returnlastid": 33,
  "items": [
    42
  ]
}
        Response examples (401)
  
  {
  "error": "Unauthorised"
}
        Response examples (403)
  
  {
  "error": "Invalid Permission"
}