createTicketDefinition( )


Note: This function replaces the deprecated createTicketDefinition() function. The deprecated function will continue to work until November 8, 2024, but it will not receive updates. To keep any existing code compatible with future changes, see the migration instructions.

Creates a ticket definition.

It is allowed to create up to 100 definitions per event.

Authentication

You can only call this method when authenticated as a Wix app or Wix user identity.

Permissions
Manage Events - all permissions
Manage Ticket Definitions
Manage Events
Learn more about app permissions.
Method Declaration
Copy
function createTicketDefinition(
  ticketDefinition: TicketDefinition,
  options: CreateTicketDefinitionOptions,
): Promise<TicketDefinition>;
Method Parameters
ticketDefinitionTicketDefinitionRequired

Ticket definition info.


optionsCreateTicketDefinitionOptions

Optional fields.

Returns
Return Type:Promise<TicketDefinition>
JavaScript
import { ticketDefinitionsV2 } from "@wix/events"; async function createTicketDefinition(ticketDefinition, options) { const response = await ticketDefinitionsV2.createTicketDefinition( ticketDefinition, options, ); }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?