Exemplo n.º 1
0
def find_cc(ccid):
    # retrieve a previously saved
    # Credit Card using the 'vault' API.
    # API used: GET /v1/vault/credit-card/{id}
    try:
        # Retrieve the CreditCard  by calling the
        # static `find` method on the CreditCard class,
        # and pass CreditCard ID
        credit_card = CreditCard.find(ccid)
        return credit_card

    except ResourceNotFound as error:
        logging.error("CreditCard Not Found")
Exemplo n.º 2
0
# GetCreditCard Sample
# This sample code demonstrates how you
# retrieve a previously saved
# Credit Card using the 'vault' API.
# API used: GET /v1/vault/credit-cards/{id}
from paypalrestsdk import CreditCard, ResourceNotFound
import logging
logging.basicConfig(level=logging.INFO)

try:
    # Retrieve the CreditCard  by calling the
    # static `find` method on the CreditCard class,
    # and pass CreditCard ID
    credit_card = CreditCard.find("CARD-5BT058015C739554AKE2GCEI")
    print(("Got CreditCard[%s]" % (credit_card.id)))

except ResourceNotFound as error:
    print("CreditCard Not Found")
Exemplo n.º 3
0
from paypalrestsdk import CreditCard, ResourceNotFound
import logging

logging.basicConfig(level=logging.INFO)

try:
    credit_card = CreditCard.find("CARD-5U686097RY597093SKPL7UNI")
    print("Got CreditCard[%s]" % (credit_card.id))

    credit_card_update_attributes = [{
        "op": "replace",
        "path": "/first_name",
        "value": "Billy"
    }]

    if credit_card.replace(credit_card_update_attributes):
        print("Card [%s] first name changed to %s" % (credit_card.id, credit_card.first_name))
    else:
        print(credit_card.error)

except ResourceNotFound as error:
    print("Billing Plan Not Found")
Exemplo n.º 4
0
from paypalrestsdk import CreditCard
import logging
logging.basicConfig(level=logging.INFO)

credit_card = CreditCard.find("CARD-7LT50814996943336KESEVWA")

if credit_card.delete():
    print("CreditCard deleted")
else:
    print(credit_card.error)
Exemplo n.º 5
0
from paypalrestsdk import CreditCard, ResourceNotFound
import logging

logging.basicConfig(level=logging.INFO)

try:
    credit_card = CreditCard.find("CARD-5U686097RY597093SKPL7UNI")
    print(("Got CreditCard[%s]" % (credit_card.id)))

    credit_card_update_attributes = [{
        "op": "replace",
        "path": "/first_name",
        "value": "Billy"
    }]

    if credit_card.replace(credit_card_update_attributes):
        print(("Card [%s] first name changed to %s" %
               (credit_card.id, credit_card.first_name)))
    else:
        print((credit_card.error))

except ResourceNotFound as error:
    print("Billing Plan Not Found")
Exemplo n.º 6
0
# #GetCreditCard Sample
# This sample code demonstrates how you
# retrieve a previously saved
# Credit Card using the 'vault' API.
# API used: GET /v1/vault/credit-card/{id}
from paypalrestsdk import CreditCard, ResourceNotFound
import logging
logging.basicConfig(level=logging.INFO)

try:
  # Retrieve the CreditCard  by calling the
  # static `find` method on the CreditCard class,
  # and pass CreditCard ID
  credit_card = CreditCard.find("CARD-5BT058015C739554AKE2GCEI")
  print("Got CreditCard[%s]"%(credit_card.id))

except ResourceNotFound as error:
  print("CreditCard Not Found")
Exemplo n.º 7
0
from paypalrestsdk import CreditCard
import logging
logging.basicConfig(level=logging.INFO)

credit_card = CreditCard.find("CARD-7LT50814996943336KESEVWA")

if credit_card.delete():
  print("CreditCard deleted")
else:
  print(credit_card.error)