Create ticket type
documentedCreate a ticket type for an event series.
POST /v1/event_series/{event_series_id}/ticket_typesTicket Typeno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.tickettailor.com/v1/event_series/{{$event_series_id}}/ticket_types" \
-X POST \
-u '{{TICKETTAILOR_API_KEY}}:' \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"name": "{{$title}}", "price": {{$price}}, "currency": "{{$currency}}", "quantity": {{$quantity}}, "description": "{{$description}}", "booking_fee": {{$booking_fee}}, "min_per_order": {{$min_per_order}}, "max_per_order": {{$max_per_order}} }'