Returns a list of all custom questionnaire submissions (excluding the answers). Includes location, kiosk, who submitted the answer, where the movement took place, date and time.
Returns a list of custom questionnaire submission records. The endpoint is limited to a maximum of 10,000 records.
A comma separated list of tag:value search parameters, a colon separator performs an exact match, a percent separator performs a starts-with search and greater/less than search number/date ranges.
List of custom questionnaire submission records
Access denied to this resource.
No records are found matching the passed in filters
curl -i -X GET \ 'https://api.whosonlocation.com/v1/custom-questionnaire/submission?q=string&order=string&limit=0&page=0' \ -H 'If-Modified-Since: string'
[- {
- "id": 1740,
- "created": "2021-11-25T14:47:34+13:00",
- "modified": "2021-12-11T14:47:34+13:00",
- "questionnaire_id": 498,
- "sp_member_id": 55,
- "visitor_id": 138,
- "staff_id": 7,
- "movement_id": 18,
- "source": "kiosk",
- "onsite_status": "onsite"
}
]
Returns a custom questionnaire submission record filtered by the passed in ID.
The custom questionnaire submission element matching the passed in ID
Access denied to this resource.
Resource not found.
curl -i -X GET \ https://api.whosonlocation.com/v1/custom-questionnaire/submission/:id
{- "id": 1740,
- "created": "2021-11-25T14:47:34+13:00",
- "modified": "2021-12-11T14:47:34+13:00",
- "questionnaire_id": 498,
- "sp_member_id": 55,
- "visitor_id": 138,
- "staff_id": 7,
- "movement_id": 18,
- "source": "kiosk",
- "onsite_status": "onsite"
}