Create a hold
documentedCreate a new hold.
POST /v1/holdsHoldno 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/holds" \
-X POST \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-u '{{TICKETTAILOR_API_KEY}}:' \
-d '{"event_id": "{{$event_id}}", "occurrence_id": "{{$occurrence_id}}", "ticket_type_id": "{{$ticket_type_id}}", "quantity": {{$quantity}}, "note": "{{$note}}"}'