Starchand
Starchand

Reputation: 714

Paddle - The checkout id must be a valid checkout id

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 });

Upvotes: 4

Views: 2109

Answers (3)

Dewan159
Dewan159

Reputation: 3084

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

Upvotes: 0

Ziaur Rahman
Ziaur Rahman

Reputation: 1188

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

Upvotes: 1

user1507558
user1507558

Reputation: 454

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!

Upvotes: 4

Related Questions