What is the url to accept payments with paypal?

Tudsy
Contributor
Contributor

HI

 

I was wondering what is the URL to put in the form action attribute to accept paypal payments?

 

Thanks

 

Adrian

Login to Me Too
1 REPLY 1

MTS_Chiranjeevi
Moderator
Moderator

Hi @Tudsy ,

 

Thank you for contacting PayPal community.

 

Our sincere apologies for the inconvenience caused.

 

For Sandbox test environment, the URL in the form action is "https://www.sandbox.paypal.com/cgi-bin/webscr".

 

https://developer.paypal.com/api/nvp-soap/paypal-payments-standard/ht-test-pps-buttons/#link-createt...  

 

For LIVE production environment, the URL in the form action is "https://www.paypal.com/cgi-bin/webscr".

 

https://developer.paypal.com/api/nvp-soap/paypal-payments-standard/integration-guide/sample-code-lan...  

 

Sample TEST button in the sandbox environment  : 

 

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">

  <input type="hidden" name="cmd" value="_s-xclick">

  <input type="hidden" name="hosted_button_id" value="**********">

  <input type="image" src="https://www.paypalobjects.com/webstatic/en_US/i/btn/png/btn_buynow_107x26.png" alt="Buy Now">

  <img alt="" src="https://paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">

</form>

 

Sample LIVE button in the Production environment  : 

 

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">

 <!-- Identify your business so that you can collect the payments. -->

      <input type="hidden" name="business" value="************@xyz.com">

<!-- Specify a Buy Now button. -->

      <input type="hidden" name="cmd" value="_xclick">

<!-- Specify details about the item that buyers will purchase. -->

     <input type="hidden" name="item_name" value="Hot Sauce-12oz. Bottle">

     <input type="hidden" name="amount" value="5.95">

     <input type="hidden" name="currency_code" value="USD">

 <!-- Display the payment button. -->

      <input type="image" name="submit" border="0" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif" alt="Buy Now">

      <img alt="" border="0" width="1" height="1" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" >

</form>

 

Thank you so much for your patience and understanding.

 

Sincerely,

Chiranjeevi

PayPal/Braintree MTS

 

If this post or any other was helpful, please enrich the community by giving kudos or accepting it as a solution.

Login to Me Too

Haven't Found your Answer?

It happens. Hit the "Login to Ask the community" button to create a question for the PayPal community.