Frequently Asked Questions

Paypal error message "Capture amount exceeds allowable limit"
We wrote the below function in sandbox environment
function captureTransactions(access_token, d) { try { var req = http.request("POST", _config.host + "/v1/payments/authorization/" + d.authorization_id + "/capture", JSON.stringify({ "amount": { "currency": "USD", "total": d.total }, "is_final_capture": true }), { "Content-Type": "application/json", "Authorization": "Bearer " + access_token }); var r = JSON.parse(req.readAll().toString()); } catch (e) { console.error(e.stack); console.error(r); } console.warn("[captureTransactions]", r); return r; }; and receive the below error
{ "name": "CAPTURE_AMOUNT_LIMIT_EXCEEDED", "message": "Capture amount exceeds allowable limit.", "information_link": "https://developer.paypal.com/webapps/developer/doc... "debug_id": "2fc79fc7df623" }
Can anyone tell me what is the reason for receiving this msg and how to fix it? Note that we only test $5 payments so it shouldn't be due to transaction size. We did do multiple authorizations on the same card before, but not sure if that could be the reason for this error?
Appreciate your help!


se-share-sheet#willShow s-popover:shown->se-share-sheet#didShow" aria-expanded="false" style="margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-family: inherit; font-optical-sizing: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; --_li-fc: var(--theme-link-color); --_li-fc-hover: var(--theme-link-color-hover); --_li-fc-visited: var(--theme-link-color-visited); color: var(--_an-a-fc, inherit); cursor: pointer; text-decoration-line: none; user-select: auto; box-sizing: inherit;">Share
Improve this question


asked Oct 11, 2016 at 3:08
Richard YijiaFan's user avatar
Richard YijiaFan
1
11 bronze badge
Add a comment
<svg></svg>

I have had this problem on the live site with PayFlow today. It appears that you cannot use a "Credit Card" that is "Attached" to that "Gateway" account with "PayPal".
I supposed that is a method to stop "Customers" (PayPal payment service users) from "Paying" themselves as a Paypal employee explained to me on another separate issue. That is where we were testing a Billing Software with the gateway and refunding the money back to our account after the transaction. We were told that we could put our own money into our account(s) that way. At the time "I ask how we were to pay the $60.00 monthly fee if the business (PayPal account) hasn't collected/processed any money yet if we can't put money in there? This was resolved by the 1st part of this Answer.

answered Nov 5, 2022 at 4:34


 Last updated 05/12/2023 3:10 am

Please Wait!

Please wait... it will take a second!