Checkin Query
This page documents a GraphQL query named check_ins for retrieving check-ins.
Updated
- 2 years ago
- Updated
Arguments
- gathering: (Int!)
Query Example
{
check_ins(gatheringId: 232) {
id
checked_in_at
checked_out_at
attendee { id, external_id }
exhibitor { id, name }
agenda_session { id, name }
}
}
Attributes
- id: (Int!)
- checked_in_at: (Date)
- checked_out_at: (Date)
- attendee: (attendeeParams)
- exhibitor: (exhibitorParams)
- agenda_session: {agendaParams)
CURL Request
curl -X POST https://api.certaintouchpoint.com/graphql \
-H 'Content-Type: application/graphql' \
-H 'Authorization: Bearer abcyourauthenticationtoken123' \
-d '{check_ins(gatheringId: 232) {id checked_in_at checked_out_at}}'