CustomerAddresses
Create, update, delete, and query customer addresses.
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | True |
A unique numeric identifier for the address. | |
| CustomerId [KEY] | Long | False |
Customers.Id |
A unique numeric identifier for the customer. |
| CustomerUpdatedAt | Datetime | True |
The date and time when the customer information was last updated. | |
| Name | String | False |
The customer's name. | |
| FirstName | String | False |
The customer's first name. | |
| LastName | String | False |
The customer's last name. | |
| Company | String | False |
The customer's company. | |
| Address1 | String | False |
The customer's mailing address. | |
| Address2 | String | False |
An additional field for the customer's mailing address. | |
| City | String | False |
The customer's city. | |
| Province | String | False |
The customer's province or state name. | |
| Country | String | False |
The customer's country. | |
| Zip | String | False |
The customer's zip or postal code. | |
| Phone | String | False |
The customer's phone number for this mailing address. | |
| ProvinceCode | String | False |
The two-letter pcode for the customer's province or state. | |
| CountryCode | String | False |
The two-letter country code corresponding to the customer's country. | |
| CountryName | String | False |
The customer's normalized country name. | |
| Default | Bool | True |
Indicates whether this address is the default address for the customer. |