Sign in

Update product

documented

Update an existing product.

POST /v1/products/{product_id}Productno implementation yet0 runs
No 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/products/{{$product_id}}" \
  -X POST \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -u '{{TICKETTAILOR_API_KEY}}:' \
  -d '{"name": "{{$name}}", "description": "{{$description}}", "price_in_cents": {{$price_cents}}, "currency": "{{$currency}}", "active": {{$active}} }'