Skip to content
Advertisement

PayPal Orders v2 create returning 422 (Unprocessable Entity) when passing amount discount

I’m using the PayPal REST SDK client side JavaScript to create an order and I have the below code:

JavaScript

This returns the aforementioned error and status code 422 (Unprocessable Entity).

This chunk of the code appears to be the problem, if it is removed the error goes away:

JavaScript

I checked and this appears to be valid?

Am I doing something wrong here?

Advertisement

Answer

It helps to read the whole JSON response error message from the JavaScript console or browser Network tab.

JavaScript

Note particularly the message in “description”.

So, there you have it. If the specified total value is 70 and the discount is 5, you need to tell PayPal what the things were that added up to be 75(!) before such a “discount” was applied. Otherwise this “discount” value is meaningless by itself, PayPal doesn’t know what to do with it, and the 422 Unprocessable error ensues to remove any ambiguity about the situation.


Side note…

You aren’t using the “REST SDK” here, since that’s specific to the server side. Client side code is the JavaScript SDK. If you do want to use the compatible REST APIs for a server-side integration (recommended), implement two routes on your server, one for “Set Up Transaction” and one for “Capture Transaction”, documented here: https://developer.paypal.com/docs/checkout/reference/server-integration/

Then change your JavaScript code to the server demo’s: https://developer.paypal.com/demo/checkout/#/pattern/server , linked up to those two routes of yours

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement