PCI DSS compliance for paypal [closed] - paypal

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Is there any PCI DSS compliance when implementing paypal in e-commerce website
Note: There is no credit card number store in the website. All of the paypal login details and credit card number is done through the paypal checkout website

If payment done via paypal checkout website, paypal takes care of PCI compliance. You only need to be PCI compliant if you log the Credit card information on your website.
So, in general if the buyer enters the credit card information on any PayPal checkout Page,
you do not require PCI as PayPal takes care of PCI.
If you implement Payment Gateway that buyer enters the Credit card information on your website directly, then you will need to implement PCI from here

Related

Can I make direct payment from one of my PayPal account to another PayPal account on single button click? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
When I click on one button some of amount from my one PayPal account i need to transfer in another PayPal account without going over to a PayPal page.
Requirement is like when any user buys product payment will go into admin account and on some specific time admin will send payment to vendors so for that I need to make payment on only single click from admin's account to vendor's account.
Is this possible?
This is possible if the sending account is approved for PayPal Payouts
See here for the integration guide and prerequisites, and how to request access to Payouts

Paypal Express checkout make billing information prefilled [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
While using paypal Express checkout using curl, can we pass some parameters to make the billing information like first name, last name, phone, city pre filled on the 'payment with debit card/credit card' page? I have all these details in my db and do not want the users to enter again on paypal payment page.
refernce- https://github.com/paypal/codesamples-php/blob/master/Merchant/sample/code/SetExpressCheckout.php
If you are using RestAPI you could create a Web Experience profile where you set the address_override
address_override integer
"Determines if the PayPal pages should display the shipping address supplied in this call, rather than the shipping address on file with PayPal for this buyer. Displaying the address on file does not allow the buyer to edit the address. Allowed values: 0 or 1. When set to 0, the PayPal pages should display the address on file. When set to 1, the PayPal pages should display the addresses supplied in this call instead of the address from the buyer’s PayPal account."
Some info here https://developer.paypal.com/docs/integration/direct/rest-experience-overview/
If you are using classic API there is something similar for the address override

issue about Paying with Walmart Debit VISA card to Paypal [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I have integrated Paypal in my site. The background is using Paypal express checkout.
The problem I'm facing is that when I paying with Walmart Debit VISA card, the Paypal service response Success BUT the the money is not decreased in Walmart Debit VISA card and also my Paypal merchant account didn't get money. What's the issue here could be?
Are you calling DoExpressCheckoutPayment, and are you pointing to the Live API endpoint(s)?
(https://api-3t.paypal.com/nvp instead of https://api-3t.sandbox.paypal.com/nvp).
Since you mention "The PayPal service responds Success" I assume you're looking at ACK=Success. This is merely an acknowledgement that the API call was processed successfully; for the transaction state I'd recommend looking at PAYMENTSTATUS=Completed. This is returned in the DoExpressCheckoutPayment API response.

How to get Payment done by Credit Card Transaction (done not by PayPal account ) in my PayPal Sandbox account. [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I want to have payment done by Credit Card Transaction (done not by PayPal account ) in my PayPal Sandbox account as test credit card transaction.
I failed in doing so.
(Till now I have tried:
I have created "Buy Now" through Website Payment Pro. For Payment
I have selected "Don't have a PayPal account?". Entered test credit card no. and real email address of my gmail account.
I am getting error "You cannot use an e-mail address or card number that belongs
to an existing PayPal account. If you have a PayPal account, please log in.
If you don't, please change the e-mail address or card number and try again."
Tried Payflow Pro also but couldnt find out how to do any Payflow Pro Payment which I can see in my PayPal Sandbox account as a credit card payment.
Please help me. I am stuck on this from so many days
Thanks in advance.
:Jyoti

Paypal credit card payments [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
When a user clicks on the buy now button, the user is taken to a page, where the user chooses the payment option. Either to pay via paypal, or to create an account an pay with credit or debit card.
Questions:
Is it possible for people to pay with their cards, without being forced to create a paypal account?
If one chooses to pay via paypal, and there is no money in the paypal account, does paypal make the payment from the attached credit or debit card?
Thank you.
Answer to 1.
Yes, if they have a Google account (gmail most likely), they can use Google checkout.
Cor you could use a credit-card payment processor like Stripe, then you can accept credit-cards directly.
You could also use Bitcoin, which would eliminate the payment-processor-parasite from the foodchain - but Bitcoin isn't popular enough as only-solution, yet.