Guest User

pypy

a guest
Jun 13th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.56 KB | None | 0 0
  1.  
  2. result = authorize.Transaction.sale({
  3.     'amount': 40.00,
  4.    
  5.     'credit_card': {
  6.         'card_number': '4222222222222',
  7.         'expiration_date': '04/2020',
  8.         'card_code': '343',
  9.     },
  10.    
  11.     'billing': {
  12.         'first_name': 'Rob',
  13.         'last_name': 'Oteron',
  14.         'company': 'Robotron Studios',
  15.         'address': '101 Computer Street',
  16.         'city': 'Tucson',
  17.         'state': 'AZ',
  18.         'zip': '85704',
  19.         'country': 'US',
  20.         'phone_number': '520-123-4567',
  21.         'fax_number': '520-456-7890',
  22.     },
  23. })
Add Comment
Please, Sign In to add comment