Skip to main content

Billing Method Object

A billing method is how a partner will pay for services rendered. This section goes over the parts of the Billing Method object. These fields and values make up the JSON response that gets returned when a request is successful.

Billing Method Object Attributes

AttributeData TypeDescription
address1string

The customer address.

address2string

The customer address second field.

cc_cidstring

The credit card CID. This field is hidden in the serialized copy of the Billing Method objects received in responses to the requests for the security reasons.

cc_expirationstring

The credit card expiration date in the mmyyyy format.

cc_numberstring

The credit card number.

citystring

The customer city.

country_codestring

The partner country code.

ec_account_numberstring

The electronic check account number.

ec_routing_numberstring

The electronic check routing number.

first_namestring

The partner first name.

last_namestring

The partner last name.

phonestring

The partner phone number.

statestring

The customer state in a two-letter abbreviation format.

typestring

The type of the billing method. Values accepted in this field are:

  • american_express
  • check
  • diners_club
  • discover_card
  • electronic_check
  • international_maestro
  • jcb
  • master_card
  • visa
  • wire
statestring

The customer state in a two-letter abbreviation format.

zipstring

The customer zip code.

Sample Billing Method Object

{
"address1":"4300 E Pacific Coast Hwy",
"address2":"Suite 1",
"cc_expiration":"022019",
"cc_number":"8888",
"city":"Long Beach",
"country_code":"USA",
"first_name":"John",
"last_name":"Smith",
"phone":"15162065574",
"state":"CA",
"type":"visa",
"zip": "90804"
}