Get all check-in types for an event
GET
/organizers/{organizer_id}/events/{event_id}/check_in_types
const url = 'https://www.eventpop.me/api/public/organizers/1/events/1/check_in_types';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://www.eventpop.me/api/public/organizers/1/events/1/check_in_typesList check-in types for event
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”event_id
required
integer format: int32
Event ID
organizer_id
required
integer format: int32
Responses
Section titled “Responses”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