Skip to main content

Locations

To get list of all locations for the account you can use the locations query:
query ListOfLocations {
  account {
    locations {
      id
      name
      address
    }
  }
}

Visitors

You can get the list of visitors waiting in a location:
query VisitorsWaiting {
  ticketSearch(locationId: "123", status: [NEW], order: {field: CREATED, direction: DESCENDING}) {
    id
    firstName
    lastName
  }
}