Paddle - The checkout id must be a valid checkout id

1.5k Views Asked by At

I'm trying to test paddle subscriptions on localhost. When I use the product id and vendor id from an example git repo everything works.

When I use my own vendor id and product id (plan id) I get a 400 error:

{"errors":[{"status":400,"code":"validation","details":"The checkout id must be a valid checkout id.","source":{"pointer":"\/checkout_id"}}]}

I have created a subscription on the portal which gives me a'Plan Id'. Is the plan id the wrong id to be using here?

Paddle.Checkout.open({ product: 752932 });
3

There are 3 best solutions below

2
user1507558 On

I had the exact same setup and symptoms. I assume you're using the Paddle sandbox since you're testing on localhost. What helped me is that I had to add

Paddle.Environment.set('sandbox')

right above the

Paddle.Setup({ vendor: xxxx })

This did it for me, but annoyingly enough wasn't well documented at all so it took a bunch of digging.

Hope this helps you too!

0
Ziaur Rahman On

Generally, this type error occurs when checkout request goes from localhost. I faced the same problem. When I test it on my hosting server, it works fine. The weghook_url should be approved by the paddle. You can set up the web hook here paddle web hook setup.

paddle web hook setup section

0
Dewan159 On

It works only when the checkout url is embedded, not opened directly