Hi,
I’m attempting to use the zoom events API. Our customers will buy their ticket and select sessions off of the zoom platform and we’ll use the Zoom APIs to create a ticket for each customer.
Here are the details with APIs been used as reference:
-
Create a paid event:
POST /zoom_events/events -
Create sessions in event:
POST /zoom_events/events/{eventId}/sessions -
Create a ticket type per customer so we can restrict access to specific sessions:
POST /zoom_events/events/{eventId}/ticket_types -
Create a ticket based on the ticket type above so we can share a join link:
POST /zoom_events/events/{eventId}/tickets
Unfortunately, I’m getting a 404 with the following response after attempting to create a ticket:
{“code”:2004,“message”:“Ticket not found.”}
Where can I find details on code 2004? The event and ticket type ids are valid and all required fields are been supplied. Is there some restrictions on using this endpoint?
Thanks for your help,
Martin