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.

New Credit Card Subscription

{
	"event_id": "e88bfc27-2d42-46a1-8427-65b4a7f11f16",
	"event_type": "recurring.subscription.add",
	"event_body": {
		"merchant": {
			"id": "123456",
			"name": "Test Account"
		},
		 "features": {
            "is_test_mode": true
        },
		"subscription_id": "12345678",
		"subscription_type": "cc",
		"processor_id": "",
		"next_charge_date": "2022-02-01",
		"completed_payments": 0,
		"attempted_payments": 0,
		"remaining_payments": 8,
		"ponumber": "",
		"order_id": "",
		"order_description": "",
		"shipping": "",
		"tax": "",
		"website": "",
		"plan": {
			"id": "1234",
			"name": "my plan",
			"amount": "20.00",
			"day_frequency": null
			"payments": 8,
			"month_frequency": 9,
			"day_of_month": 10
		},
		"billing_address": {
            "first_name": "Jessica",
            "last_name": "Jones",
            "address_1": "123 Fake St.",
            "address_2": "123123",
            "company": "Alias Investigations",
            "city": "New York City",
            "state": "NY",
            "postal_code": "12345",
            "country": "US",
            "email": "someone@example.com",
            "phone": "555-555-5555",
            "cell_phone": "",
            "fax": "444-555-6666"
		},
		"card" : {
            "cc_number": "411111******1111",
            "cc_exp": "1022",
            "cavv": "",
            "cavv_result": "",
            "xid": "",
            "eci": "",
            "avs_response": "N",
            "csc_response": "",
            "cardholder_auth": "",
            "cc_start_date": "",
            "cc_issue_number": "",
            "card_balance": "",
            "card_available_balance": "",
            "entry_mode": "",
            "cc_bin": "",
            "cc_type": ""
        }
	}
}

New Check Subscription

{
	"event_id": "e88bfc27-2d42-46a1-8427-65b4a7f11f16",
	"event_type": "recurring.subscription.add",
	"event_body": {
		"merchant": {
			"id": "123456",
			"name": "Test Account"
		},
		"features": {
            "is_test_mode": true
        },
		"subscription_id": "12345678",
		"subscription_type": "ck",
		"processor_id": "",
		"next_charge_date": "2022-02-01",
		"completed_payments": 0,
		"attempted_payments": 0,
		"remaining_payments": 8,
		"ponumber": "",
		"order_id": "",
		"order_description": "",
		"shipping": "",
		"tax": "",
		"website": "",
		"plan": {
			"id": "1234",
			"name": "my plan",
			"amount": "20.00",
			"day_frequency": null
			"payments": 8,
			"month_frequency": 9,
			"day_of_month": 10
		},
		"billing_address": {
            "first_name": "Jessica",
            "last_name": "Jones",
            "address_1": "123 Fake St.",
            "address_2": "123123",
            "company": "Alias Investigations",
            "city": "New York City",
            "state": "NY",
            "postal_code": "12345",
            "country": "US",
            "email": "someone@example.com",
            "phone": "555-555-5555",
            "cell_phone": "",
            "fax": "444-555-6666"
		},
        "check": {
            "check_account": "*****1234",
            "check_aba": "100000000",
            "check_name": "Jessica Jones",
            "account_holder_type": "personal",
            "account_type": "checking",
            "sec_code": "WEB"
        }
	}
}