Checkin Query

Checkin Query

This page documents a GraphQL query named check_ins for retrieving check-ins.

Updated

Arguments

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

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}}'