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/Rebill/Create_Recurring_Payment_ACH.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
62 lines (54 sloc)
1.83 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 creates a recurring payment charging $15.00 per month for one year. | |
## | |
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" | |
) | |
# Set ACH Payment Information | |
payment.set_ach_information( | |
routing_number = "123123123", # Routing Number: 123123123 | |
account_number = "05125121", # Account Number: 0523421 | |
account_type = "C", # Account Type: Checking | |
doc_type = "WEB" # ACH Document Type: WEB | |
) | |
payment.auth(amount = '0.00') | |
# Set Recurring Payment Information | |
payment.set_rebilling_information( | |
reb_first_date = "2015-01-01", # Rebill Start Date: Jan. 1, 2015 | |
reb_expr = "1 MONTH", # Rebill Frequency: 1 MONTH | |
reb_cycles = "12", # Rebill # of Cycles: 12 | |
reb_amount = "15.00" # Rebill Amount: $15.00 | |
) | |
# Makes the API Request | |
payment.process() | |
# Read response from BluePay | |
if payment.is_successful_response(): | |
print('Transaction ID: ' + payment.trans_id_response) | |
print('Rebill ID: ' + payment.reb_id_response) | |
print('Transaction Status: ' + payment.status_response) | |
print('Transaction Message: ' + payment.message_response) | |
print('Masked Payment Account: ' + payment.trans_id_response) | |
print('Customer Bank: ' + payment.bank_name_response) | |
else: | |
print(payment.message_response) |