Billing APIs

Introduction
Billing API is a RESTful API that allows setting up customers, collecting payments and maintaining balances for these customers, as well as creating recurring billing subscriptions.

Billing API documentation includes the following sections:

Objects - lists all recurring billing objects. The purpose of this section is to describe all object fields, their format and usage, provide the links to the corresponding database tables.

Type Enumerations – lists possible values that can be used in the respective fields within Billing API requests and responses. The purpose of this section is to provide an explanation of all enumerations used for API calls.

Actions - lists all actions that can be performed with key recurring billing objects. The purpose of this section is to describe the methods and format of API requests and the format of responses.

Integration Notes – lists integration notes associated with the Billing API objects and actions. The purpose of this section is to provide explicit information about the peculiarities of specific actions and object fields.

Code samples - provides examples of recurring billing use cases (creating billing plans, subscriptions, freeing or canceling subscriptions, reversing transactions, etc) and their implementation in JSON, XML formats. The purpose of this section is to provide examples that can be used for testing of the integration with the gateway.

To learn how to work with the Billing API, we recommend reviewing the integration notes first. Key recurring billing module terms are available here. For more detailed information about the recurring billing configurations and management, check the Recurring Billing Guide.

Base Resource URL:

https://[server-name]/api/v01/customers/[customer-id]/[payment-options]

Description:

Provides access to payment options associated with the specified customer.

Supported sub-resources:

Resource URL Description
https://[server-name]/api/v01/customers/[customer-id]/[payment-options]/[payment-option-id] Provides access to configuration settings for the specified payment option.

Supported Actions:

~create (request)

Method:  PUT
Implicit:  Yes
Returns:  PaymentOption
Consumes:  json,xml
Produces:  json,xml

Creates a payment option.
Path Parameters:
# Name Type Pattern Format Mode Usage Description
1 customer-id Long O Unique Customer ID generated by the system.
For more information see term: Customer.
Body Parameters:
# Name Type Pattern Format Mode Usage Description
1 countryCode String(3) ALPHA O Country code of the Customer.
2 token String(50) C O Unique random characters generated by the system for identifying and securely transmitting sensitive data.
3 accountAccessory String(80) NUMERIC R Card expiration date or bank routing number that will be used during the transaction processing.
4 holderName String(150) NAME R The value is a concatenation of the firstName and lastName field values separated by a space.
5 accountNumber String(80) C R Number of a payment card or bank account that will be used during the transaction processing.
11 type Enum C O Type of a Payment Option that will be created.
12 isActive Boolean O Status of the PaymentOption.
Note: Values: true (active) or false (inactive).
13 csc String NUMERIC O CVV2 security code of the credit card that will be used for the transaction processing.
14 street1 String(128) STREET O Street address of the Customer.
15 street2 String(128) STREET O Secondary street address of the Customer.
Note: Additional street data such as appartment or suite number.
16 city String(50) ALPHANUMERIC_EXTENDED O City of the Customer.
17 state String(3) O State of the Customer.
Note: State value format is subject to the associated country code in the Customer object.
18 zipCode String(15) O ZIP/postal code of the Customer.
Note: ZipCode value format is subject to the associated country code in the Customer object.
20 code String(60) CODE C O Unique PaymentOption ID supplied by external/user's system.
Note: Optional secondary identifier. Typically this field is a reference to an ID in your own system to cross-reference it within our system. If not provided, the system will use the object 'id' generated at the time of object creation.
For more information see Reference Field Type.
21 accountId Integer O Merchant account associated with PaymentOption.
Note: If your API user is associated to more than one merchant account or group of merchant accounts, you can specify the merchant account ID for the ~find operation to reduce the data set in the API response.

Your API credentials may be associated with more than one accountId.
23 token String C O Unique random characters generated by the system for identifying and securely transmitting sensitive data.

~create (response)

Method:  PUT
Implicit:  Yes
Returns:  PaymentOption
Consumes:  json,xml
Produces:  json,xml

Creates a payment option.
Body Parameters:
# Name Type Pattern Format Mode Usage Description
1 countryCode String(3) ALPHA O Country code of the Customer used for filtering PaymentOption records.
2 token String(50) C O Unique random characters generated by the system used for filtering PaymentOption records.
3 accountAccessory String(80) NUMERIC R Card expiration date or bank routing number used for filtering records.
4 holderName String(150) NAME R The value is a concatenation of the firstName and lastName field values separated by a space.
5 accountNumber String(80) C R Number of a payment card or bank account used for filtering records.
6 address String R O Combined address field of the customer.
Note: The value is a comma separated concatenation of the street1, street2, city, state, zipCode, countryCode field values.
7 createDate Datetime R O Date when the PaymentOption was created.
Note: In API request, the date must be submitted in yyyy-MM-dd format. In API response, the date is returned in yyyy-MM-dd HH:mm:ss format.
8 id Long R O Unique PaymentOption ID generated by the system.
For more information see term: Payment Option.
9 tokenCode String(512) R O Code of the token associated with the particular payment option.
10 createDate Datetime R O Date when the PaymentOption was created.
Note: In API request, the date must be submitted in yyyy-MM-dd format. In API response, the date is returned in yyyy-MM-dd HH:mm:ss format.
11 type Enum C O Type of a Payment Option used as a search criteria to limit results.
12 isActive Boolean O Status of the PaymentOption used for filtering PaymentOption records.
13 csc String NUMERIC O CVV2 security code of the credit card used as a search criteria to limit results.
14 street1 String(128) STREET O Street address of the Customer object used for filtering PaymentOption records.
15 street2 String(128) STREET O Secondary street address of the Customer used for filtering PaymentOption records.
16 city String(50) ALPHANUMERIC_EXTENDED O City of the Customer used for filtering PaymentOption records.
17 state String(3) O State of the Customer used for filtering PaymentOption records.
18 zipCode String(15) O ZIP/postal code of the Customer used for filtering PaymentOption records.
19 customerId Long R O Identifier of a Customer that a PaymentOption is associated with.
20 code String(60) CODE C O Unique PaymentOption ID supplied by external/user's system used for filtering unique Customer ID records.
21 accountId Integer O Reference to an account used for filtering records.
22 address String R O Combined address field of the customer.
Note: The value is a comma separated concatenation of the street1, street2, city, state, zipCode, countryCode field values.
23 token String C O Unique random characters generated by the system used for filtering PaymentOption records.

~find (request)

Method:  GET
Implicit:  Yes
Consumes:  xurl
Produces:  json,xml

Returns a list of available payment options associated with the specified customer.
Path Parameters:
# Name Type Pattern Format Mode Usage Description
1 customer-id Long O Unique Customer ID generated by the system.
For more information see term: Customer.
Body Parameters:
# Name Type Pattern Format Mode Usage Description
1 offset Integer O Index of the first record returned to the customer from the search result of a web search.
2 limit Integer O Maximum number of records to load per single search web call made by the customer.

~find (response)

Method:  GET
Implicit:  Yes
Consumes:  xurl
Produces:  json,xml

Returns a list of available payment options associated with the specified customer.
Body Parameters:
# Name Type Pattern Format Mode Usage Description
1 countryCode String(3) ALPHA O Country code of the Customer.
2 token String(50) C O Unique random characters generated by the system for identifying and securely transmitting sensitive data.
3 accountAccessory String(80) NUMERIC R Card expiration date or bank routing number.
4 holderName String(150) NAME R The value is a concatenation of the firstName and lastName field values separated by a space.
5 accountNumber String(80) C R Number of a payment card or bank account.
6 address String R O Combined address field of the customer.
Note: The value is a comma separated concatenation of the street1, street2, city, state, zipCode, countryCode field values.
7 createDate Datetime R O Date when the PaymentOption was created.
Note: In API request, the date must be submitted in yyyy-MM-dd format. In API response, the date is returned in yyyy-MM-dd HH:mm:ss format.
8 id Long R O Unique PaymentOption ID generated by the system.
For more information see term: Payment Option.
9 tokenCode String(512) R O Code of the token associated with the particular payment option.
10 createDate Datetime R O Date when the PaymentOption was created.
Note: In API request, the date must be submitted in yyyy-MM-dd format. In API response, the date is returned in yyyy-MM-dd HH:mm:ss format.
11 type Enum C O Type of a Payment Option.
12 isActive Boolean O Status of the PaymentOption.
Note: Values: true (active) or false (inactive).
13 csc String NUMERIC O CVV2 security code of the credit card used for the transaction processing.
14 street1 String(128) STREET O Street address of the Customer.
15 street2 String(128) STREET O Secondary street address of the Customer.
Note: Additional street data such as appartment or suite number.
16 city String(50) ALPHANUMERIC_EXTENDED O City of the Customer.
17 state String(3) O State of the Customer.
Note: State value format is subject to the associated country code in the Customer object.
18 zipCode String(15) O ZIP/postal code of the Customer.
Note: ZipCode value format is subject to the associated country code in the Customer object.
19 customerId Long R O Identifier of a Customer that a PaymentOption is associated with.
20 code String(60) CODE C O Unique PaymentOption ID supplied by external/user's system.
Note: Optional secondary identifier. Typically this field is a reference to an ID in your own system to cross-reference it within our system. If not provided, the system will use the object 'id' generated at the time of object creation.
For more information see Reference Field Type.
21 accountId Integer O Merchant account associated with PaymentOption.
Note: If your API user is associated to more than one merchant account or group of merchant accounts, you can specify the merchant account ID for the ~find operation to reduce the data set in the API response.

Your API credentials may be associated with more than one accountId.
22 address String R O Combined address field of the customer.
Note: The value is a comma separated concatenation of the street1, street2, city, state, zipCode, countryCode field values.
23 token String C O Unique random characters generated by the system for identifying and securely transmitting sensitive data.