Skip to main content

PayPal Community

  • Dashboard
  • Send and Request
  • Wallet
  • Business
  • Help
Log in
  • Welcome
    • Guidelines
    • News and Events
    • Suggestions for PayPal
    • General Discussions
  • PayPal Help Community
    • Managing Account
    • Transactions
    • Wallet
    • Security and Fraud
    • Products & Services
    • Reporting
  • MTS Community
    • PayPal Upgrade Community
    • PayPal Payments Standard
    • REST APIs
    • NVP/SOAP APIs
    • SDKs
    • Sandbox Environment
    • PayPal Reporting
    • Payflow
    • Ideas for MTS
    • Client-side Integration
    • Server-side Integration
  • The Archives
    • PayPal Help Community Archives
      • Managing Account Archives
      • Transactions Archives
      • Wallet Archives
      • Security and Fraud Archives
      • Products & Services Archives
      • Reporting Archives
    • Help Community
      • PayPal Basics Archives
      • Payments Archives
      • My Money Archives
      • My Account Archives
      • Disputes and Limitations Archives
      • Products and Services Archives
      • PayPal Credit Archives
    • Merchant Community
      • Merchant Products
      • Business Tools Archives
      • Reporting Archives
      • Managing Risk and Fraud Archives
    • Help Archives
      • About Business (Archive)
      • About Payments (Archive)
      • About Settings (Archive)
      • About eBay (Archive)
      • About Protections (Archive)
      • About Products (Archive)
    • Social and Your Voice Archives
      • Off Topic (Archive)
      • My Feedback for PayPal (Archive)
    • About PayPal Archives
      • Watercooler (Archive)
      • Tax Information (Archive)
      • Fees (Archive)
      • eBay and PayPal (Archive)
      • Coupons and promotions (Archive)
    • My Account Archives
      • My account settings (Archive)
      • Account limits and verification (Archive)
      • Account balance (Archive)
      • Bank accounts and credit cards (Archive)
    • Payments Archives
      • Sending money (Archive)
      • Receiving money (Archive)
      • Refunds (Archive)
      • Donations and Fundraising (Archive)
    • Disputes and Security Archives
      • Disputes and claims (Archive)
      • Fraud, phishing and spoof (Archive)
    • My Business Archives
      • Merchant services (Archive)
      • Reporting and tracking (Archive)
      • Shipping (Archive)
    • PayPal Products Archives
      • PayPal Debit Mastercard (Archive)
      • PayPal Extras MasterCard (Archive)
      • PayPal Mobile & Other Services (Archive)
      • Student Accounts (Archive)
      • Bill Me Later (Archive)
    • Getting to know PayPal
      • My PayPal account
      • Security and protection
    • Receiving and sending money
      • Buying with PayPal
      • Selling with PayPal
    • PayPal Here UK
      • PayPal Here News and Events
      • PayPal Here Community
      • Chip and Pin Card Reader
      • PayPal Here App

The Community Forum will no longer be available starting June 30, 2025. Please note that the forum is now closed for new posts and responses, but previous posts will remain accessible for review until June, 30 2025. For comprehensive support options, please visit PayPal.com/HelpCenter
Merchant Technical Support: For technical support and related questions, please visit our Technical Support Help Center or Developer Central

If you want to report illegal content under the EU Digital Services Act, please do so here

since ‎Apr-17-2017
bolau
bolau Member
Member
2
Posts
0
Kudos
0
Solutions
Your 3rd PayPal Anniversary
Your PayPal Anniversary
Ice Breaker
View all
Latest Contributions by bolau
  • Topics bolau has Participated In
  • Latest Contributions by bolau

Re: IPN mc_gross_1 includes the shipping amount

by bolau Member in PayPal Reporting
‎Apr-17-2017 05:29 PM
‎Apr-17-2017 05:29 PM
I've got the same problem, due to inconsistencies between different checkout methods.   Here's an IPN I get after a checkout with cart upload via a form POST to  https://www.paypal.com/cgi-bin/webscr The form fields looks like this:   amount_1: 11.9 quantity_1: 1 shipping_1: 1.9 cmd: _cart   I would like to use a global shipping field instead of shipping_1, but there is none, as far as I know. In the resulting IPN, both mc_gross and mc_gross_1 include the fee listed in mc_shipping, while mc_shipping1 is not set:   { "mc_gross": "13.80", "mc_shipping": "1.90", "notify_version": "3.8", "num_cart_items": "1", "payment_type": "instant", "quantity1": "1", "txn_type": "cart", "mc_gross_1": "13.80", ... }   Now I do the same via a Paypal Plus checkout, using the JavaScript Rest API. Here, the shipping field is global, and yields a different IPN. Now, only mc_gross includes mc_shipping, mc_gross_1 is without shipping:   {    "mc_gross": "13.80",    "mc_shipping": "1.90",    "notify_version": "3.8",    "num_cart_items": "1",    "payment_type": "instant",    "quantity1": "1",    "txn_type": "cart",    "mc_gross_1": "11.90", ... }   It seems reasonable that using shipping vs shipping_1 causes different IPNs, but then I would expect that shipping_1 causes an mc_shipping_1 field instead of mc_shipping in the first IPN. The actual behavior feels very buggy, since the math required for parsing the IPNs is different. What's the best way to deal with this?   If I can help with txn_ids or other details, please let me know.   All the Best, Boris ... View more

Re: IPN mc_gross_1 includes the shipping amount

by bolau Member in PayPal Reporting
‎Apr-17-2017 05:22 PM
‎Apr-17-2017 05:22 PM
I've got the same problem, due to inconsistencies between different checkout methods.   Here's an IPN I get after a checkout with cart upload via a form POST to  https://www.paypal.com/cgi-bin/webscr The form fields looks like this:   amount_1: 11.9 quantity_1: 1 shipping_1: 1.9 cmd: _cart   I would like to use a global shipping field instead of shipping_1, but there is none, as far as I know. In the resulting IPN, both mc_gross and mc_gross_1 include the fee listed in mc_shipping, while mc_shipping1 is not set:   { "mc_gross": "13.80", "mc_shipping": "1.90", "notify_version": "3.8", "num_cart_items": "1", "payment_type": "instant", "quantity1": "1", "txn_type": "cart", "mc_gross_1": "13.80", ... }   Now I do the same via a Paypal Plus checkout, using the JavaScript Rest API. Here, the shipping field is global, and yields a different IPN. Now, only mc_gross includes mc_shipping, mc_gross_1 is without shipping:   {    "mc_gross": "13.80",    "mc_shipping": "1.90",    "notify_version": "3.8",    "num_cart_items": "1",    "payment_type": "instant",    "quantity1": "1",    "txn_type": "cart",    "mc_gross_1": "11.90", ... }   It seems reasonable that using shipping vs shipping_1 causes different IPNs, but then I would expect that shipping_1 causes an mc_shipping_1 field instead of mc_shipping in the first IPN. The actual behavior feels very buggy, since the math required for parsing the IPNs is different. What's the best way to deal with this?   If I can help with txn_ids or other details, please let me know.   All the Best, Boris ... View more
Paypal Logo
  • Help
  • Contact Us
  • Security
  • Fees
  • © 1999-2025 PayPal, Inc. All rights reserved.
  • Privacy
  • Legal
  • Cookies
  • Policy Updates

The money in your balance is eligible for pass-through FDIC insurance.

The PayPal Cash Mastercard is issued by The Bancorp Bank pursuant to a license by Mastercard International Incorporated. The Bancorp Bank; Member FDIC.

Powered by Khoros
Welcome to the PayPal Community!