Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
BluePay-Sample-Code/Python/Transactions/Update_Transaction.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
76 lines (65 sloc)
2.41 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
# BluePay Python Sample code. | |
# | |
# This code sample runs a $3.00 Credit Card Sale transaction | |
# against a customer using test payment information. If | |
# approved, a 2nd transaction is run to update the first transaction | |
# to $5.75, $2.75 more than the original $3.00. | |
# If using TEST mode, odd dollar amounts will return | |
# an approval and even dollar amounts will return a decline. | |
## | |
from __future__ import print_function | |
import os.path, sys | |
sys.path.append(os.path.join(os.path.dirname(os.path.realpath(__file__)), os.pardir)) | |
from BluePay import BluePay | |
account_id = "Merchant's Account ID Here" | |
secret_key = "Merchant's Secret Key Here" | |
mode = "TEST" | |
payment = BluePay( | |
account_id = account_id, | |
secret_key = secret_key, | |
mode = mode | |
) | |
payment.set_customer_information( | |
name1 = "Bob", | |
name2 = "Tester", | |
addr1 = "123 Test St.", | |
addr2 = "Apt #500", | |
city = "Testville", | |
state = "IL", | |
zipcode = "54321", | |
country = "USA" | |
) | |
payment.set_cc_information( | |
card_number = "4111111111111111", | |
card_expire = "1225", | |
cvv2 = "123" | |
) | |
payment.sale(amount = '3.00') # Sale Amount: $3.00 | |
# Makes the API request for processing the sale | |
payment.process() | |
# If transaction was approved.. | |
if payment.is_successful_response(): | |
payment_update = BluePay( | |
account_id = account_id, # Merchant's Account ID | |
secret_key = secret_key, # Merchant's Secret Key | |
mode = mode # Transaction Mode: TEST (can also be LIVE) | |
) | |
# Creates an update transaction against previous sale | |
payment_update.update( | |
transaction_id = payment.trans_id_response, # id of the transaction to update | |
amount = '5.75' # add $2.75 to previous amount | |
) | |
# Make the API request | |
payment_update.process() | |
# Read response from BluePay | |
print('Transaction Status: ' + payment_update.status_response) | |
print('Transaction Message: ' + payment_update.message_response) | |
print('Transaction ID: ' + payment_update.trans_id_response) | |
print('AVS Response: ' + payment_update.avs_code_response) | |
print('CVV2 Response: ' + payment_update.cvv2_code_response) | |
print('Masked Payment Account: ' + payment_update.masked_account_response) | |
print('Card Type: ' + payment_update.card_type_response) | |
print('Auth Code: ' + payment_update.auth_code_response) | |
else: | |
print(payment_update.message_response) |