The postal address information.

Address

interface Address {
    AddressLine1: string;
    AddressLine2?: string;
    AddressLine3?: string;
    City: string;
    CountryCode: string;
    DistrictOrCounty?: string;
    Email: string;
    Name: string;
    Phone: string;
    PostalCode: string;
    StateOrProvinceCode?: string;
}

Properties

AddressLine1: string

The street address information.

Address

AddressLine2?: string

Additional street address information.

Address

AddressLine3?: string

Additional street address information.

Address

City: string

The city.

Address

CountryCode: string

The two-letter country code in ISO 3166-1 alpha-2 format.

Address

DistrictOrCounty?: string

The district or county.

Address

Email: string

The email address.

Address

Name: string

The name of the addressee, or business name.

Address

Phone: string

The phone number.

Address

PostalCode: string

The zip code or postal code.

Address

StateOrProvinceCode?: string

The state or province code. This is a required field in Canada, US, and UK marketplaces, and for shipments that originate in China.

Address