mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
764 B
764 B
Paddle hints:
- max_quantity on price: Paddle limits
quantityon a price to 100 by default. You need to explicitly set the range (quantity: {minimum: 20, maximum: 10000}) when creating a price via API or dashboard. Otherwise requests with quantity > 100 will return an error. - Full items list on update: Unlike Stripe, Paddle requires sending all subscription items in
PATCH /subscriptions/{id}, not just the changed ones.proration_billing_modeis also required. Without this you can accidentally remove a line item or get a 400. - Webhook events mapping: Paddle uses
transaction.completedinstead ofpayment.succeeded,transaction.payment_failedinstead ofpayment.failed,adjustment.createdinstead ofdispute.created.