Questions tagged [paypal-vault]

API which provides a secure way to store customer credit cards on PayPal servers, instead of saving them on developer-specific servers.

14 questions
17
votes
1 answer

How to debug the PayPal debug_id?

We're using PayPal Vault Rest API for our payment features. It was working fine in sandbox, but it started giving us errors for a couple of weeks now. Error is manifesting in sandbox mode. It's giving following error: { "name":…
Bilal Akmal
  • 207
  • 1
  • 4
  • 12
2
votes
0 answers

pay-pal store credit card details in vault is not working in rails

I am using https://developer.paypal.com/docs/api/vault/#credit-card_create to store the credit card details in paypal vault using gem 'typhoeus'. I have followed the step which is provided by paypal api but i am getting INTERNAL_SERVICE_ERROR. This…
SethuNagaKarthik
  • 387
  • 1
  • 3
  • 17
2
votes
3 answers

paypal rest api update a stored credit card

Using the PayPal Rest API, is there any way to update a stored credit card? PayPal's documentation on this, "Vault: Store customer credit cards securely.", only specifies: Store a credit card Delete a stored credit card Look up a stored credit…
1
vote
0 answers

Internal server error when saving card in paypal vault

I am using pay-pal vault to store my users credit card. When am trying to store user credit card am getting internal server error with response code = 500. I have tried with different type of sample test cards, but still it is not working for me.…
SethuNagaKarthik
  • 387
  • 1
  • 3
  • 17
1
vote
1 answer

when using stored card in Paypal Vault it return INTERNAL SERVICE ERROR

What is issue in my code:Using Vault api in paypal credit card information saved but when i using saved card then get error function paypalPaymentViaStoredCreditCard_post() { $access_token = "XXXXXXXX"; $ch = curl_init(); $data = '{ …
Mohd Zubair Khan
  • 263
  • 2
  • 16
1
vote
1 answer

Paypal vault for recurring payments

I'm going to offer my customers a selection of subscriptions to digital content. I want the customer to be able to add or delete subscriptions later, with as little hassle as possible. It seems that if I use Paypal vault, I can collect the card…
0
votes
0 answers

PayPal Vault Payment: Getting 400 Bad Request error on Sandbox account

Starging fresh, I logged on to paypal.com and went to the Developer Dashboard. I created a new app there called, CADESandboxApp. Selected “Merchant” type and sandbox account, sp-facilitator@l.net. I used the following creds (numbers changed and…
Velocedge
  • 1,222
  • 1
  • 11
  • 35
0
votes
0 answers

PayPal Vault integration

I am currently developing a mobile marketplace application using React-Native and Nest.js. I am implementing the 'onboarding before payment' flow for sellers, where I am storing the merchant id in my database. However, when a customer adds a payment…
0
votes
1 answer

PayPal-PHP-SDK vault store and retrieve card information

I am using PayPal-PHP-SDK and I want to store and retrieve card information in PayPal vault. Whenever I store using following code I get a response. But whenever I want to retrieve the card details I get nothing and it doesn't show error. …
0
votes
1 answer

Paypal Vault card number is masked

In sandbox mode i am able to store credit card numbers, however when i retrieve it the card number is masked IE "xxxxxxxxxxxx1111". The documentation states that it should be a numeric string. Is this how it is supposed to work or does it just do…
0
votes
2 answers

Paypal Vault - compliance

To do Paypal stored credit card payments, does the app requires to go through any PCI or QSS compliance certification process? Note: I am using Paypal vault to store credit card info with paypal.
jagadeesh m
  • 73
  • 2
  • 9
0
votes
1 answer

Does the PayPal Vault API support Purchasing/Procurement (P-Cards)?

I am looking to add PayPal Vault support for an application but can't find in the PayPal documentation as to whether it support Purchasing/Procurement P-Cards. I would just setup a test inside the sandbox and see whether it worked but I am not…
0
votes
1 answer

How to check if a card is already stored in Paypal Vault

I have managed to integrate the Paypal Vault through their API to store credit card information, retrieve the information and delete a card. But I am looking for a way to check if the card is already stored in the vault before I store it, but could…
Ronny vdb
  • 2,324
  • 5
  • 32
  • 74
0
votes
1 answer

Cannot assign a payer_id when saving a card to the vault

According to the rest api documentation it is recommended to assign a payer_id when saving a card to the vault. My problem is that there is no payer_id property to populate for the creditCard object in the first place. creditCard.number =…
DNDev1
  • 3
  • 2