Skip to content

Get all check-in types for an event

GET
/organizers/{organizer_id}/events/{event_id}/check_in_types
curl --request GET \
--url https://www.eventpop.me/api/public/organizers/1/events/1/check_in_types

List check-in types for event

event_id
required
integer format: int32

Event ID

organizer_id
required
integer format: int32

List check-in types for event

Media typeapplication/json

PublicAPI_Entities_CheckInTypesResponse model

object
success

Operation success status

boolean
check_in_types

List of check-in types

Array<object>
object
id

Check-in type ID

integer format: int32
name

Check-in type name

string
description

Description

string
auto_check_in_ticket

Auto check-in enabled

boolean
tickets_count

Number of tickets checked in

integer format: int32
tags

Tags

Array<string>
count

Number of check-in types

integer format: int32
multiple_check_in_enabled

Whether multiple check-ins are enabled for this event

boolean
Examplegenerated
{
"success": true,
"check_in_types": [
{
"id": 1,
"name": "example",
"description": "example",
"auto_check_in_ticket": true,
"tickets_count": 1,
"tags": [
"example"
]
}
],
"count": 1,
"multiple_check_in_enabled": true
}

Unauthorized

Media typeapplication/json

Event not found

Media typeapplication/json