Skip to main content

Documentation Index

Fetch the complete documentation index at: https://bancofcalifornia-preview.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Set up recurring payments for customers with customizable schedules and pricing.
1

1. Monthly Recurring Payment

Use the recurring subscription variables in the example request below to create a monthly billing schedule with a tokenized payment method.
2

2. Optional Information

Provide additional information you need to perform a recurring payment.

Example Request

curl --request POST \
     --url https://gateway.bancedge.com/api/transact.php \
     --header 'accept: application/x-www-form-urlencoded' \
     --header 'content-type: application/x-www-form-urlencoded' \

     --data recurring=add_subscription \
     --data payment_token=00000000-000000-000000-000000000000\

     --data plan_payments=0 \
     --data plan_amount=11.12 \
     --data start_date=20230901 \
     --data month_frequency=2 \
     --data day_of_month=4 \

     --data first_name=John \
     --data last_name=Doe \
     --data 'address1=123 Main St' \
     --data 'city=New York' \
     --data state=NY \
     --data zip=10001 \
     --data country=US \
     --data phone=5555555555 \
     --data email=johndoe@example.com \

     --data security_key=6457Thfj624V5r7WUwc5v6a68Zsd6YEm

Example Response

{"success":true}
Review Recurring Variables and Transaction Response Variables before you promote a recurring billing flow into production.