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 ‎Feb-19-2022
Country: United States
Type: Business
Nexus_Software
Nexus_Software Contributor
Contributor
47
Posts
15
Kudos
6
Solutions
Your PayPal Anniversary
Solver
Admired
Neighborly
Giving
Esteemed
Sociable
Helper
Friendly
Liked
New Look
The Return
Ice Breaker
View all
Latest Contributions by Nexus_Software
  • Topics Nexus_Software has Participated In
  • Latest Contributions by Nexus_Software
  • « Previous page
    • 1
    • 2
    • 3
    • 4
  • Next page »

Re: How can I point to my account via username ins...

by Nexus_Software Contributor in PayPal Payments Standard
‎Feb-28-2022 05:16 AM
1 Kudo
‎Feb-28-2022 05:16 AM
1 Kudo
Hi @mhorniq ,   Using the donation SDK is different. You would first log in to paypal.com/donate/buttons with the account you want to use to make a Donate button. Then create the predefined button. After you create a button, you get code. From the code, copy: hosted_button_id value if you have a business account business value if you have a personal account. An example for implementing the button on your page would be:   <script src="https://www.paypalobjects.com/donate/sdk/donate-sdk.js" charset="UTF-8"></script> <script> PayPal.Donation.Button({ env: 'production', hosted_button_id: 'S2KMEP2EAURGY', // business: 'PAYPAL_BUSINESS_EMAIL', image: { src: 'https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif', title: 'PayPal - The safer, easier way to pay online!', alt: 'Donate with PayPal button' }, onComplete: function (params) { // Your onComplete handler }, }).render('#paypal-donate-button-container'); </script>       Thank you.   Powered by Custom Software : NexWebSites.com PayPal Developers ... View more

Re: Problem when going live. Error displayed: "The...

by Nexus_Software Contributor in REST APIs
‎Feb-26-2022 12:17 PM
‎Feb-26-2022 12:17 PM
Hello @ThomasFrom ,   This can happen if the API request for create Payment went to the sandbox. Can you double check your environment settings?   Thank you. Powered by Custom Software : NexWebSites.com PayPal Developers ... View more

Re: 404 Payments with a PaymentID given by the API

by Nexus_Software Contributor in REST APIs
‎Feb-26-2022 12:12 PM
‎Feb-26-2022 12:12 PM
Hello @Purhur ,   Is it possible that you a querying the sandbox endpoint sometimes? ... View more

Re: subscription creation with initial first payme...

by Nexus_Software Contributor in REST APIs
‎Feb-26-2022 11:44 AM
1 Kudo
‎Feb-26-2022 11:44 AM
1 Kudo
Hello @iceget ,   One way to achieve your desired outcome is to charge an initial setup fee when you create your plans. With the "setup_fee_failure_action": "CANCEL", For example:   "payment_preferences": { "auto_bill_outstanding": true, "setup_fee": { "value": "10", "currency_code": "USD" }, "setup_fee_failure_action": "CANCEL", "payment_failure_threshold": 0 }   If the set up fee was the equivalent of one month, you could create the plan with a one month free trial.   Thank you.   Powered by Custom Software : NexWebSites.com PayPal Developers ... View more

Re: Orders API payment failure webhooks

by Nexus_Software Contributor in REST APIs
‎Feb-26-2022 05:35 AM
‎Feb-26-2022 05:35 AM
Hello @QTNitin ,   Webhook events for the v2 API include: PAYMENT.AUTHORIZATION.CREATED A payment authorization is created, approved, executed, or a future payment authorization is created. Capture authorized payment PAYMENT.AUTHORIZATION.VOIDED A payment authorization is voided. Show details for authorized payment with response status of voided. PAYMENT.CAPTURE.COMPLETED A payment capture completes. Capture authorized payment with response status of completed. PAYMENT.CAPTURE.DENIED A payment capture is denied. Show details for authorized payment with response status of denied. PAYMENT.CAPTURE.PENDING The state of a payment capture changes to pending. Show details for authorized payment with response status of pending. PAYMENT.CAPTURE.REFUNDED A merchant refunds a payment capture. Capture authorized payment with response status of refunded. PAYMENT.CAPTURE.REVERSED PayPal reverses a payment capture. Refund captured payment   Thank you.   Powered by Custom Software : NexWebSites.com PayPal Developers ... View more

Re: Change PayPal.me Url

by Nexus_Software Contributor in Products & Services Archives
‎Feb-26-2022 05:22 AM
1 Kudo
‎Feb-26-2022 05:22 AM
1 Kudo
Hello,   Though PayPal may not easily allow you to change your PayPal.me link, there are numerous way to create you own link. For example: On your own web page, you could use a meta tag in the <head>:   <meta http-equiv="refresh" content="0;url=https://paypal.me/nexweb">     Create a JavaScript function for links or button clicks or redirect with the programming language or your choice:     <a href="#" id="payme">Pay Me</a> <button onclick="location.href = 'https://paypal.me/nexweb';" id="myButton" class="float-left submit-button" >Pay me</button> <script type="text/javascript"> document.getElementById("payme").onclick = function () { location.href = "https://paypal.me/nexweb"; }; </script>     Creating a dynamic redirect with the programming language or your choice is simple and this method gives you the opportunity to create relevant pages or links and track the click activity as well ...     header("Location: https://paypal.me/nexweb"); die();   Then you could have your own paypal.me link like:  mydomain.com/my_payment_url   Thank you.   Powered by Custom Software : NexWebSites.com PayPal Developers ... View more

Re: Error when trying to use REST API to connect t...

by Nexus_Software Contributor in REST APIs
‎Feb-26-2022 02:42 AM
‎Feb-26-2022 02:42 AM
Hello @jasfi,   On Windows this issue can be resolved by  Downloading the file at https://curl.se/ca/cacert.pem Placing the file in a folder that is in %PATH% or else in the same location as the .exe Thank you.   Powered by Custom Software : NexWebSites.com PayPal Developers   ... View more

Re: Disable 2FA on my account

by Nexus_Software Contributor in Managing Account Archives
‎Feb-25-2022 03:41 PM
‎Feb-25-2022 03:41 PM
Hello @Mujibur.   Did you go to : https://www.paypal.com/businessmanage/profile/loginSecurity then update 2-step verification? ... View more

Re: paypal subscription pipeline

by Nexus_Software Contributor in REST APIs
‎Feb-25-2022 03:13 PM
‎Feb-25-2022 03:13 PM
You're welcome. Excellent👍. I'm glad to hear it's working for you.     ... View more

Re: Paypal payment method error on my site.

by Nexus_Software Contributor in REST APIs
‎Feb-25-2022 01:53 PM
‎Feb-25-2022 01:53 PM
Hello @kreth214 ,   There could be a number of reasons for an unknown error.  What PayPal methods are you trying to implement and how are you implementing them on your website?   Thank you. ... View more
  • « Previous page
    • 1
    • 2
    • 3
    • 4
  • 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!