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: paypal subscription pipeline

by Nexus_Software Contributor in REST APIs
‎Feb-25-2022 01:43 PM
1 Kudo
‎Feb-25-2022 01:43 PM
1 Kudo
This works.   You could test with the following PHP. Just replace YOUR_BEARER_TOKEN with your own Bearer token.   <?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://api-m.sandbox.paypal.com/v1/catalogs/products', CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'POST', CURLOPT_POSTFIELDS =>'{ "name": "Video Streaming Service", "description": "Video streaming service", "type": "SERVICE", "category": "SOFTWARE", "image_url": "https://example.com/streaming.jpg", "home_url": "https://example.com/home" }', CURLOPT_HTTPHEADER => array( 'Accept-Language: en_US', 'Accept: application/json', 'Authorization: Bearer YOUR_BEARER_TOKEN', 'Content-Type: application/json' ), )); $response = curl_exec($curl); curl_close($curl); echo $response;           ... View more

Re: paypal subscription pipeline

by Nexus_Software Contributor in REST APIs
‎Feb-25-2022 01:15 PM
1 Kudo
‎Feb-25-2022 01:15 PM
1 Kudo
Hello @alex313962 ,   Can you try using Content-Type: application/json?   Thank you.     Powered by Custom Software : NexWebSites.com PayPal Developers ... View more

Re: Error in processing payment

by Nexus_Software Contributor in PayPal Payments Standard
‎Feb-25-2022 12:41 PM
‎Feb-25-2022 12:41 PM
Hello @Beensalam,   There could be an issue with your button or account. Can you post the code you are using for your button or a link to where it is located?   Thank you. ... View more

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

by Nexus_Software Contributor in PayPal Payments Standard
‎Feb-25-2022 12:35 PM
1 Kudo
‎Feb-25-2022 12:35 PM
1 Kudo
Hi @mhorniq,   You're welcome. Using the newer JavaScript generated PayPal buttons provides flexibility in terms of using custom amounts and other dynamic variables.  ... View more

Re: Is there any way to have e customer text box/n...

by Nexus_Software Contributor in PayPal Payments Standard
‎Feb-25-2022 12:03 PM
1 Kudo
‎Feb-25-2022 12:03 PM
1 Kudo
Hi @Josephtrevize,   You're welcome. One way is to get the value of the comments box into your variable using the built-in JavaScript onblur() function, then pass it to your custom_id or description field.   This looks like the following on your page. The result is visible in your transaction ...   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 10:01 AM
‎Feb-25-2022 10:01 AM
Hello @Mujibur ,   The instructions for disabling 2FA can be found at: How do I turn on or off 2-step verification for PayPal account login?   Thank you. ... View more

Re: Is there any way to have e customer text box/n...

by Nexus_Software Contributor in PayPal Payments Standard
‎Feb-25-2022 09:34 AM
‎Feb-25-2022 09:34 AM
Hello @Josephtrevize,   In the context of the JavaScript SDK, there are the following available fields. reference_id description custom_id For example :  paypal.Buttons({ createOrder: function(data, actions) { return actions.order.create({ purchase_units: [{ reference_id: "Internal Reference ID for this Transaction.", description: "Transaction Description", custom_id: "127 Character string",  When implementing your buttons, the contents of the text box could be passed to one of these variables.   Thank you. ... View more

Re: How do I setup a receiver to get data from pay...

by Nexus_Software Contributor in PayPal Reporting
‎Feb-22-2022 10:08 AM
1 Kudo
‎Feb-22-2022 10:08 AM
1 Kudo
Hello,   Your IPN listener can be hosted at any secure URL that is reachable from PayPal's server. The documentation and code samples for IPN is located at: Introducing IPN (paypal.com)   Thank you. ... View more

Re: Track where payments are generated from??

by Nexus_Software Contributor in PayPal Reporting
‎Feb-22-2022 09:55 AM
1 Kudo
‎Feb-22-2022 09:55 AM
1 Kudo
Hello,   One way to track where a payment was made from is to use the hidden custom input, then populate the value dynamically with JavaScript. E.g.,   <form> <input id="FromURL" type="hidden" name="custom"> </form> <script> document.getElementById("FromURL").value = window.location.href; </script>     Thank you. ... View more

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

by Nexus_Software Contributor in PayPal Payments Standard
‎Feb-22-2022 09:34 AM
2 Kudos
‎Feb-22-2022 09:34 AM
2 Kudos
Hello,    One way to create a button with a predefined amount without using your email is to use the hosted button hidden input  E.g.,      <input type="hidden" name="hosted_button_id" value="xxxxxxxxxx">     The complete HTML for the hosted button is generated for you when you create a PayPal Payments Standard payment button.   Are you trying to create buttons with dynamic amounts?   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!