Skip to main content
GET
/
checkin
/
v1
/
api
/
event
/
{eventId}
/
statistics
Gets the statistics for an event
curl --request GET \
  --url https://api.qflowhub.io/checkin/v1/api/event/{eventId}/statistics \
  --header 'Authorization: Bearer <token>' \
  --header 'Ocp-Apim-Subscription-Key: <api-key>'
{
  "averageCheckinsPerMin": 123,
  "admitted": 123,
  "total": 123,
  "arrivalActivity": [
    {
      "admitted": "<string>",
      "admittedCount": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.qflowhub.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth 2.0 access token issued by https://identity.qflowhub.io/core. Include as Authorization: Bearer <token>. See the Authentication guide for the token flow.

Ocp-Apim-Subscription-Key
string
header
required

Your APIM subscription key. Sent in the welcome email when your account is enabled. Required on every request alongside the bearer token.

Path Parameters

eventId
string
required

The ID of the event to get the activity flow for

Query Parameters

tagId
string

The TagId in which to filter the statistics

Response

OK

averageCheckinsPerMin
number<double>
admitted
integer<int32>
total
integer<int32>
arrivalActivity
object[]