Sign in

Update a checkout coupon

documented

Updates a checkout coupon.

PUT /checkout/coupons/{id}Checkoutno 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://{{$account_name}}.quadernoapp.com/api/checkout/coupons/{{$coupon_id}}" \
  -X PUT \
  -u {{QUADERNO_API_KEY}}:x \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"code": "{{$code}}", "name": "{{$name}}", "percent_off": {{$percent_off}}, "amount_off": {{$amount_off}}, "currency": "{{$currency}}", "max_redemptions": {{$max_redemptions}}, "redeem_by": "{{$redeem_by}}", "kind": "{{$kind}}"}'
Update a checkout coupon · Quaderno · OpenIntegrations