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 is not available for new posts or responses; previous posts remain available to review. 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 ‎Dec-06-2017
rahul-dighe
PayPal Employee rahul-dighe
PayPal Employee
48
Posts
7
Kudos
4
Solutions
Your PayPal Anniversary
Neighborly
Esteemed
Sociable
Helper
Friendly
Liked
New Look
Ice Breaker
Organized
The Return
Giving
View all
Topics rahul-dighe has Participated In
  • Topics rahul-dighe has Participated In
  • Latest Contributions by rahul-dighe
  • « Previous page
    • 1
    • 2
  • Next page »

Re: Sandbox order "CAPTURE" intent payment review

by PayPal Employee rahul-dighe in Sandbox Environment
‎Sep-09-2019 09:40 AM
‎Sep-09-2019 09:40 AM
can you advise which APIs are you using? NVP/SOAP, v1/payments, v2/orders. ... View more

Re: Currency of capture must be the same as curren...

by PayPal Employee rahul-dighe in Sandbox Environment
‎Aug-29-2019 10:35 AM
‎Aug-29-2019 10:35 AM
It would be helpful to know which APIs you are using v1/payments or v2/orders + v2/payments   Assuming the latter if you do  Create Order - POST v2/checkout/orders  with currency as USD Authorize Order -    -- Capture on the Authorization and use a currency as GBP than it is not permitted hence you are getting an error.    You cannot secure a hold (authorization) in a currency different than the one you ultimately capture in.    if you want to capture an authorization in GBP then the Create Order should also be in (GBP).    We would welcome the opportunity to enhance the error message so your feedback is greatly appreciated.  ... View more

Re: Orders API v2: Web Experience Profile

by PayPal Employee rahul-dighe in SDKs
‎Aug-19-2019 09:26 AM
‎Aug-19-2019 09:26 AM
> Logo Image is no longer supported.    > can you send me your request ? the application_context.brand_name should work. The store name that it shows is the one for either the API caller or the payee that you might have specified.   Thanks     ... View more

Re: Associate an order with transaction.

by PayPal Employee rahul-dighe in REST APIs
‎Aug-07-2019 01:31 PM
‎Aug-07-2019 01:31 PM
Thanks for confirming.      ... View more

Re: Create Orders Api v2 doesn't show total withou...

by Nimja Contributor in REST APIs
‎Aug-06-2019 12:53 AM
‎Aug-06-2019 12:53 AM
Thank you very much, this is indeed what it was.   Example of functional request that will show the total:   $request = new \PayPalCheckoutSdk\Orders\OrdersCreateRequest(); $request->prefer('return=minimal'); $request->body = [ "intent" => "CAPTURE", "purchase_units" => [ [ 'description' => 'Example description', 'soft_descriptor' => 'Soft description', 'amount' => [ "currency_code" => 'USD', 'value' => '1.23', ], ] ], "application_context" => [ "cancel_url" => "URL", "return_url" => "URL", "shipping_preference" => "NO_SHIPPING", "user_action" => "PAY_NOW", ], ];   ... View more

Re: Error "Order could not be patched" in new V2 A...

by PayPal Employee rahul-dighe in REST APIs
‎Aug-05-2019 01:08 PM
‎Aug-05-2019 01:08 PM
are you still facing this issues? ... View more

Re: [technical] does anyone know the details/ diff...

by PayPal Employee rahul-dighe in REST APIs
‎Aug-05-2019 01:07 PM
‎Aug-05-2019 01:07 PM
https://medium.com/paypal-engineering/launch-v2-paypal-checkout-apis-45435398b987 - I have summed up our rationale for v2 in this article.   please let me know if you have specific questions and I can help answer them. ... View more

Re: I need help with REST APIs and V2 client setup...

by PayPal Employee rahul-dighe in REST APIs
‎Aug-05-2019 01:03 PM
‎Aug-05-2019 01:03 PM
https://developer.paypal.com/docs/checkout/ - you do need a basic amount of tech knowledge but the basic integration is the simplest that can be. ... View more
  • « Previous page
    • 1
    • 2
  • Next page »
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!