Poll for new form entries
Poll for new form entries where the ID is greater than the supplied fromthisid parameter. Returns up to returncount entries. Only form entries that the authenticated user has permission to view are included.
GET
/formentries/poll/{fromthisid}/{returncount}
curl \
--request GET 'https://YOURSITE.infoodle.com/apiv2/formentries/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"
}