CustomerAddresses
Holds customer address data including shipping and billing addresses, supporting full CRUD operations.
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | True |
A unique numeric identifier for the customer's address. | |
| CustomerId [KEY] | Long | False |
Customers.Id |
A unique numeric identifier for the customer associated with the address. |
| CustomerUpdatedAt | Datetime | True |
The date and time when the customer record was last updated. | |
| Name | String | False |
The full name of the customer associated with this address. | |
| FirstName | String | False |
The customer's first name. | |
| LastName | String | False |
The customer's last name. | |
| Company | String | False |
The name of the company associated with the address, if applicable. | |
| Address1 | String | False |
The first line of the customer's street address, such as a house number or PO Box. | |
| Address2 | String | False |
An optional second line for additional address details, such as an apartment, suite, or unit number. | |
| City | String | False |
The city or locality of the customer's address. | |
| Province | String | False |
The name of the province or state for the customer's address. | |
| Country | String | False |
The full name of the country for the customer's address. | |
| Zip | String | False |
The postal or ZIP code associated with the address. | |
| Phone | String | False |
The customer's phone number for this address. | |
| ProvinceCode | String | False |
The two-letter abbreviation for the province or state, following ISO 3166-2 standards. | |
| CountryCode | String | False |
The two-letter country code corresponding to the country, following ISO 3166-1 alpha-2 standards. | |
| CountryName | String | False |
The normalized country name for the address. | |
| Default | Bool | True |
Indicates whether this is the customer's default address. |