Skip to main content
GET
/
checkin
/
v1
/
api
/
team
/
event
/
{id}
Gets a list of team members and their check-in statistics
curl --request GET \
  --url https://api.qflowhub.io/checkin/v1/api/team/event/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Ocp-Apim-Subscription-Key: <api-key>'
[
  {
    "id": "<string>",
    "eventId": "<string>",
    "teamMemberId": "<string>",
    "username": "<string>",
    "checkedIn": 123,
    "checkedOut": 123,
    "checkedInActivity": [
      {
        "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

id
string
required

Response

OK

id
string
eventId
string
teamMemberId
string
username
string
checkedIn
integer<int32>
checkedOut
integer<int32>
checkedInActivity
object[]
read-only