Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 771 Bytes

1_overview.md

File metadata and controls

21 lines (16 loc) · 771 Bytes

Using Pay with Paddle

Paddle works differently than most of the other payment processors so it comes with some limitations and differences.

  • You cannot create a Customer from the API
  • Checkout only happens via iFrame or hosted page
  • Cancelling a subscription cannot be resumed
  • Payment methods can only be updated while a subscription is active
  • Paddle customers are not reused when a user re-subscribes

Paddle Sandbox

The Paddle Sandbox can be used for testing your Paddle integration.

<script src="https://cdn.paddle.com/paddle/paddle.js"></script>
<script type="text/javascript">
  Paddle.Environment.set('sandbox');
  Paddle.Setup({ vendor: <%= Pay::Paddle.vendor_id %> });
</script>