Customer
Description
This object contains all customer contact information, including telephone number, fax number, and email address.
Properties
Type | Name | Description |
---|---|---|
string | MerchantId | Merchant ID (assigned by system). (required) |
string | CustomerInternalId | Customer internal ID (assigned by system). (required) |
string | CustomerId | Customer ID. (required) |
string | FirstName | Customer's first name. (required) |
string | LastName | Customer's last name. (required) |
string | CompanyName | Company or organization name. (optional) |
string | Phone | Telephone number. (required) |
string | CellPhone | Cell phone. (optional) |
string | Fax | Fax number. (optional) |
string | Email address. (optional) | |
string | WebSite | Customer's website. (optional) |
RecurringBilling | RecurringBillingData | Recurring billing information. (optional) |
Address | BillingAddress | Customer's billing address. (required) |
Address | ShippingAddress | Customer's shipping address. (optional) |
PaymentMethodProfile | PaymentMethodProfiles | Payment Method Profile. (optional) |
string | CustomerToken | Customer Token. (optional) |
string | CustomerNotes | Customer Notes. (optional) |
string | SoftwareId | Software ID. (optional) |
CustomerCustomFields | CustomerCustomFields | Customer Customer Field. (optional) |
string | CustomerLastSyncDateTime | Customer Last Sync Date Time. (optional) |
string | DivisionId | Division ID. (optional) |
string | DateTimeCreated | Date Time Created. (optional) |
string | DateTimeModified | Date Time Modified. (optional) |
Examples
EBizSOAP.Customer customer = new EBizSOAP.Customer();
customer.FirstName = "Joe";
customer.LastName = "Miller";
customer.CompanyName = "CBS";
customer.BillingAddress.Address1 = "20 Pacifica";
customer.BillingAddress.Address2 = "Suite 1450";
customer.BillingAddress.City = "Irvine";
customer.BillingAddress.ZipCode = "92618";
customer.BillingAddress.State = "California";
Updated over 2 years ago