I am getting an error 10413 "The totals of the cart item amounts do not match order amounts. I can't find what totals are different, so I want to eliminate the variables that I do not need in order to simplify and find the variables that aren't matching. What are the absolute minimun variables needed to complete a transaction in paypal sandbox?
SetExpressCheckout Minimum Variables
130 Views Asked by Dave At
1
There are 1 best solutions below
Related Questions in VARIABLES
- Is card-swipe hardware payment system-specific?
- Extracting/Decoding name from USB Credit Card reader
- Payment Card Industry PCI Compliance for Azure PCI DSS AppServices
- Any way to accept Credit Card swipes with a reader from a non-native Web App?
- EMV: Second Generate AC Results in 6985 SW_Error Access condition not satisfied
- Magento Submit Order button not forwarding after security patch update
- How to call Vault Pay Pal Api in android
- JCB card IIN changed or updated ?
- Credit / Debit Payment without Payment Gateway
- PCI compliant hash of a credit card number
Related Questions in PAYPAL
- Is card-swipe hardware payment system-specific?
- Extracting/Decoding name from USB Credit Card reader
- Payment Card Industry PCI Compliance for Azure PCI DSS AppServices
- Any way to accept Credit Card swipes with a reader from a non-native Web App?
- EMV: Second Generate AC Results in 6985 SW_Error Access condition not satisfied
- Magento Submit Order button not forwarding after security patch update
- How to call Vault Pay Pal Api in android
- JCB card IIN changed or updated ?
- Credit / Debit Payment without Payment Gateway
- PCI compliant hash of a credit card number
Related Questions in SANDBOX
- Is card-swipe hardware payment system-specific?
- Extracting/Decoding name from USB Credit Card reader
- Payment Card Industry PCI Compliance for Azure PCI DSS AppServices
- Any way to accept Credit Card swipes with a reader from a non-native Web App?
- EMV: Second Generate AC Results in 6985 SW_Error Access condition not satisfied
- Magento Submit Order button not forwarding after security patch update
- How to call Vault Pay Pal Api in android
- JCB card IIN changed or updated ?
- Credit / Debit Payment without Payment Gateway
- PCI compliant hash of a credit card number
Related Questions in MINIMUM
- Is card-swipe hardware payment system-specific?
- Extracting/Decoding name from USB Credit Card reader
- Payment Card Industry PCI Compliance for Azure PCI DSS AppServices
- Any way to accept Credit Card swipes with a reader from a non-native Web App?
- EMV: Second Generate AC Results in 6985 SW_Error Access condition not satisfied
- Magento Submit Order button not forwarding after security patch update
- How to call Vault Pay Pal Api in android
- JCB card IIN changed or updated ?
- Credit / Debit Payment without Payment Gateway
- PCI compliant hash of a credit card number
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The following must be true in your API request.
ITEMAMT + SHIPPINGAMT + HANDLINGAMT + TAXAMT = AMT
If that math does not work out then you will get the error you are seeing.
You can eliminate all of those and just send an AMT on its own, but then you can't include line item details. If that's not important, then you'd be just fine. I always prefer to send line item details, though, so that I have it available in the PayPal transaction details.
So again, as long as that math works out then you would be fine. You need to look at your request and see what values you have for those, add them up, and you'll probably find that they don't equal the AMT value you sent.