Customers
The customer object is an important component of the Braintree gateway. Use customers to store and organize payment methods. A single customer can have multiple payment methods.
This guide will walk you through the basics. See Customer Request and Customer Response references for complete details. Make sure to include the customer's email and phone information if planning to use Risk Products.
Create
Use Customer: Create
to add new customers.
You can create just a customer without an associated payment method, and the operation will be successful if all customer validations pass:
- C#
var request = new CustomerRequest
{
FirstName = "Mark",
LastName = "Jones",
Company = "Jones Co.",
Email = "mark.jones@example.com",
Fax = "419-555-1234",
Phone = "614-555-1234",
Website = "http://example.com"
};
Result<Customer> result = gateway.Customer.Create(request);
bool success = result.IsSuccess();
// true
string customerId = result.Target.Id;
// e.g. 594019
Create with payment method
You can also create a customer with an associated payment method:
- C#
var request = new CustomerRequest
{
FirstName = "Fred",
LastName = "Jones",
PaymentMethodNonce = nonceFromTheClient
};
Result<Customer> result = gateway.Customer.Create(request);
bool success = result.IsSuccess();
// true
Customer customer = result.Target;
string customerId = customer.Id;
// e.g. 160923
string cardToken = customer.PaymentMethods[0].Token;
// e.g. f28w
Success depends on both customer validations and payment method validations, and whether the payment method is verified (if card verification is enabled).
See the reference and more examples of creating a customer .
Update
Use Customer: Update
to update an existing customer:
- C#
var request = new CustomerRequest
{
FirstName = "New First Name",
LastName = "New Last Name"
};
Result<Customer> updateResult = gateway.Customer.Update("the_customer_id", request);
If the customer can't be found, it will throw a NotFoundException
.
See the reference and more examples of updating a customer .
Find
Use Customer: Find
to find a customer by ID:
- C#
Customer customer = gateway.Customer.Find("the_customer_id");
If the customer can't be found, it will throw a NotFoundException
.
The return value of this call will be a Customer
response object.
Delete
Use Customer: Delete
to delete a customer and its payment methods using the customer's ID:
- C#
var result = gateway.Customer.Delete("the_customer_id");
result.IsSuccess()
// true
If the customer can't be found, it will throw a NotFoundException
.