Get ticket groups​
GET
/api/v2/events/{eventId}/ticket-groups
Returns a list of ticket groups
Authorizations​
bearerAuth
Type
HTTP (bearer)
Parameters​
Path Parameters
eventId*
Event Id
Type
Requiredinteger
Format
"int64"Responses​
Ticket group list
application/json
{
 Â
 Â
 Â
 Â
 Â
 Â
}
Create a new ticket group​
POST
/api/v2/events/{eventId}/ticket-groups
Create ticket group
Authorizations​
bearerAuth
Type
HTTP (bearer)
Parameters​
Path Parameters
eventId*
Event Id
Type
Requiredinteger
Format
"int64"Request Body​
application/json
"string"
Responses​
Created ticket group object
application/json
{
 Â
}
Get ticket group by ID​
GET
/api/v2/events/{eventId}/ticket-groups/{id}
Returns a single ticket group
Authorizations​
bearerAuth
Type
HTTP (bearer)
Parameters​
Path Parameters
eventId*
Event Id
Type
Requiredinteger
Format
"int64"id*
Ticket Group Id
Type
Requiredinteger
Format
"int64"Responses​
Ticket group object
application/json
{
 Â
}
Delete a ticket group​
DELETE
/api/v2/events/{eventId}/ticket-groups/{id}
Deletes a ticket group
Authorizations​
bearerAuth
Type
HTTP (bearer)
Parameters​
Path Parameters
eventId*
Event Id
Type
Requiredinteger
Format
"int64"id*
ID of the ticket group to delete
Type
Requiredinteger
Format
"int64"Responses​
Ticket group deleted successfully
Update a ticket group​
PATCH
/api/v2/events/{eventId}/ticket-groups/{id}
Update an existing ticket group
Authorizations​
bearerAuth
Type
HTTP (bearer)
Parameters​
Path Parameters
eventId*
Event Id
Type
Requiredinteger
Format
"int64"id*
ID of the ticket group to update
Type
Requiredinteger
Format
"int64"Request Body​
application/json
"string"
Responses​
Updated ticket group object
application/json
{
 Â
}
