forked from LiveCarta/PayPal-PHP-SDK
51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
<?php
|
|
|
|
// # Create Credit Card Sample
|
|
// Using the 'vault' API, you can store a
|
|
// Credit Card securely on PayPal. You can
|
|
// use a saved Credit Card to process
|
|
// a payment in the future.
|
|
// The following code demonstrates how
|
|
// can save a Credit Card on PayPal using
|
|
// the Vault API.
|
|
// API used: POST /v1/vault/credit-card
|
|
|
|
|
|
require __DIR__ . '/../bootstrap.php';
|
|
use PayPal\Api\CreditCard;
|
|
use PayPal\Api\Address;
|
|
|
|
// ### CreditCard
|
|
// A resource representing a credit card that can be
|
|
// used to fund a payment.
|
|
$card = new CreditCard();
|
|
$card->setType("visa")
|
|
->setNumber("4417119669820331")
|
|
->setExpireMonth("11")
|
|
->setExpireYear("2019")
|
|
->setCvv2("012")
|
|
->setFirstName("Joe")
|
|
->setLastName("Shopper");
|
|
|
|
// ### Save card
|
|
// Creates the credit card as a resource
|
|
// in the PayPal vault. The response contains
|
|
// an 'id' that you can use to refer to it
|
|
// in future payments.
|
|
// (See bootstrap.php for more on `ApiContext`)
|
|
try {
|
|
$card->create($apiContext);
|
|
} catch (PayPal\Exception\PPConnectionException $ex) {
|
|
echo "Exception:" . $ex->getMessage() . PHP_EOL;
|
|
var_dump($ex->getData());
|
|
exit(1);
|
|
}
|
|
?>
|
|
<html>
|
|
<body>
|
|
<div>Saved a new credit card with id: <?php echo $card->getId();?></div>
|
|
<pre><?php var_dump($card);?></pre>
|
|
<a href='../index.html'>Back</a>
|
|
</body>
|
|
</html>
|