Customer: Create
See also the Customer response object.
You can create a customer by itself, with a payment method, or with a credit card with a billing address.
Transaction: Sale with either the      options-store_in_vault_on_success or      options-store_in_vault options.- Ruby
result = gateway.customer.create(
  :first_name => "Jen",
  :last_name => "Smith",
  :company => "Braintree",
  :email => "[email protected]",
  :phone => "312.555.1234",
  :fax => "614.555.5678",
  :website => "www.example.com"
)
if result.success?
  puts result.customer.id
else
  p result.errors
endParameters
:companyString:companyString:country_code_alpha2StringThe ISO 3166-1 alpha-2 country code specified in an address. The gateway only accepts specific alpha-2 values.
:country_code_alpha3StringThe ISO 3166-1 alpha-3 country code specified in an address. The gateway only accepts specific alpha-3 values.
:country_code_numericStringThe ISO 3166-1 numeric country code specified in an address. The gateway only accepts specific numeric values.
:country_nameStringThe country name specified in an address. We only accept specific country names.
:extended_addressString:first_nameString:country_codeString:national_numberString:last_nameString:localityString:phone_numberStringDeprecated.
We recommend using international_phone. This functionality still exists in the gateway but is no longer documented. This parameter will be removed in the future.
:postal_codeString:regionString:street_addressString:cardholder_nameString:cvvStringTypically requires PCI SAQ D compliance
We recommend using payment_method_nonce to avoid any PCI concerns with raw credit card data being present on your server.
A 3 or 4 digit card verification value assigned to a credit card. The CVV will never be stored in the gateway, but it can be provided with one-time requests to verify the card.
:expiration_dateStringTypically requires PCI SAQ D compliance
We recommend using payment_method_nonce to avoid any PCI concerns with raw credit card data being present on your server.
The expiration date of a credit card, formatted MM/YY or MM/YYYY. May be used instead of expiration_month and expiration_year.
:expiration_monthStringTypically requires PCI SAQ D compliance
We recommend using payment_method_nonce to avoid any PCI concerns with raw credit card data being present on your server.
The expiration month of a credit card, formatted MM. May be used with expiration_year, and instead of expiration_date.
:expiration_yearStringTypically requires PCI SAQ D compliance
We recommend using payment_method_nonce to avoid any PCI concerns with raw credit card data being present on your server.
The two or four digit year associated with a credit card, formatted YYYY or YY. May be used with expiration_month, and instead of expiration_date.
:numberStringTypically requires PCI SAQ D compliance
We recommend using payment_method_nonce to avoid any PCI concerns with raw credit card data being present on your server.
The 12-19 digit value on a credit card consisting of a bank identification number (BIN) and primary account number (PAN).
:make_defaultboolIf the payment method is a credit card, prevents the verification from being evaluated as part of Premium Fraud Management Tools checks. Use with caution – once you've skipped checks for a verification, it is not possible to run them retroactively.
:verification_amountStringSpecify the merchant account ID that you want to use to verify a card. Can't be a Braintree Marketplace sub-merchant account. For more details on merchant accounts in general, see merchant_account_id on Transaction: Sale.
:verify_cardboolIf the payment method is a credit card, this option prompts the gateway to verify the card's number and expiration date. It also verifies the AVS and CVV information if you've enabled AVS and CVV rules.
In some cases, cardholders may see a temporary authorization on their account after their card has been verified. The authorization will fall off the cardholder's account within a few days and will never settle.
If the verification runs and is unsuccessful, the customer and payment method will not be vaulted and the vault request will only return the Credit Card Verification result.
Results of a merchant-performed 3D Secure authentication. You will only need to use these fields if you've performed your own integration with a 3D Secure MPI provider (e.g. Cardinal Centinel). Otherwise, Braintree's SDKs handle this for you in our standard 3D Secure integration.
:cavvStringCardholder authentication verification value or CAVV. The main encrypted message issuers and card networks use to verify authentication has occurred. Mastercard uses an AVV message and American Express uses an AEVV message, each of which should also be passed in the cavv parameter.
:ds_transaction_idStringTransaction identifier resulting from 3D Secure 2 authentication. This field must be supplied for Mastercard Identity Check.
:eci_flagStringThe value of the electronic commerce indicator (ECI) flag, which indicates the outcome of the 3DS authentication.
Accepted values for Mastercard:
- 00= Failed or not attempted
- 01= Attempted
- 02= Success
- 04= Data-Only (Applies to limited processors)
Accepted values for all other card brands:
- 07= Failed or not attempted
- 06= Attempted
- 05= Success
:three_d_secure_versionStringThe version of 3D Secure authentication used for the transaction. Required
on Visa and Mastercard authentications. Must be composed of digits separated
by periods (e.g. 1.0.2).
:xidStringTransaction identifier resulting from 3D Secure authentication. Uniquely identifies the transaction and sometimes required in the authorization message. Must be base64-encoded. This field will no longer be used in 3D Secure 2 authentications.
:tokenStringAn alphanumeric value that references a specific payment method stored in your Vault. Must be less than or equal to 36 characters. If using a custom integration, you can specify what you want the token to be. If not specified, the gateway will generate one that can be accessed on the result. If using our Drop-in UI with a customer ID to vault payment methods, you can't specify your own token. Length and format of gateway-generated tokens and IDs may change at any time.
A collection of custom field/value pairs. Fields and values must be less than 255 characters. You must set up each custom field in the Control Panel prior to passing it with a request. Querying this value returns a collection of custom field values stored on the customer object.
:device_dataStringCustomer device information. Pass this value only if you have Premium Fraud Management Tools enabled and are adding credit card data to your Vault. Be sure to provide the full string received from the Braintree client SDK.
:emailString:faxString:first_nameString:idString:country_codeString:national_numberString:last_nameString:payment_method_nonceString:phoneStringDeprecated.
We recommend using international_phone. This functionality still exists in the gateway but is no longer documented. This parameter will be removed in the future.
Customer device information, which is sent directly to supported processors for fraud analysis. These fields are automatically populated if using Premium Fraud Management Tools. Currently only available when processing American Express via Amex Direct. Contact us with any questions.
:customer_browserString:customer_ipString:tax_identifiersarray:country_codeStringThe ISO 3166-1 alpha-2 country code specified in an address. The gateway only accepts specific alpha-2 values.
:identifierString:websiteStringExamples
Specify your own customer ID
You can optionally choose what you would like the ID to be. Customer IDs are case insensitive.
- Ruby
result = gateway.customer.create(
  :id => "customer_123",
  :first_name => "Katrina"
)Blank customer
If you're only interested in storing a payment method without any customer information, you can create a blank customer:
- Ruby
result = gateway.customer.createCustomer with a payment method
You can also create a payment method along with a customer. If all customer validations and credit card validations or PayPal account validations pass, and the credit card is verified (if supplied and verification is requested), success will return true.
- Ruby
result = gateway.customer.create(
  :first_name => "Charity",
  :last_name => "Smith",
  :payment_method_nonce => nonce_from_the_client
)
if result.success?
  puts result.customer.id
  puts result.customer.payment_methods[0].token
else
  p result.errors
endIf you do not specify a token for the payment method, as in the example above, the gateway will generate one. If you are using a custom integration, you can also choose what you want the token to be.
- Ruby
result = gateway.customer.create(
  :credit_card => {
    :token => "credit_card_123"
  },
  :payment_method_nonce => nonce_from_the_client
)Customer with a payment method and billing address
You can also pass in a billing address when creating a customer and payment method.
- Ruby
result = gateway.customer.create(
  :payment_method_nonce => nonce_from_the_client,
  :credit_card => {
    :billing_address => {
      :first_name => "Jen",
      :last_name => "Smith",
      :company => "Braintree",
      :street_address => "123 Address",
      :locality => "City",
      :region => "State",
      :postal_code => "12345"
    }
  }
)Card verification
- Ruby
result = gateway.customer.create(
  :payment_method_nonce => nonce_from_the_client,
  :first_name => "Fred",
  :last_name => "Jones",
  :credit_card => {
    :options => {
      :verify_card => true
    }
  }
)Use custom fields
Use custom fields to store additional data about your customers in Braintree. You'll need to configure your custom fields in the Control Panel to use them via the API.
Here is an example of setting custom fields with API names of custom_field_one and custom_field_two:
- Ruby
result = gateway.customer.create(
  :first_name => "Bob",
  :last_name => "Smith",
  :custom_fields => {
    :custom_field_one => "value one",
    :custom_field_two => "value two"
  }
)
if result.success?
  result.customer.custom_fields
  #=> {:custom_field_one => "value one", :custom_field_two => "value two"}
end