The shipping address for the order.

Address

interface Address {
    AddressLine1?: string;
    AddressLine2?: string;
    AddressLine3?: string;
    AddressType?: AddressAddressTypeEnum;
    City?: string;
    CompanyName?: string;
    CountryCode?: string;
    County?: string;
    District?: string;
    ExtendedFields?: AddressExtendedFields;
    Municipality?: string;
    Name: string;
    Phone?: string;
    PostalCode?: string;
    StateOrRegion?: string;
}

Properties

AddressLine1?: string

The street address.

Address

AddressLine2?: string

Additional street address information, if required.

Address

AddressLine3?: string

Additional street address information, if required.

Address

The address type of the shipping address.

Address

City?: string

The city.

Address

CompanyName?: string

The company name of the recipient. Note: This attribute is only available for shipping address.

Address

CountryCode?: string

The country code. A two-character country code, in ISO 3166-1 alpha-2 format.

Address

County?: string

The county.

Address

District?: string

The district.

Address

ExtendedFields?: AddressExtendedFields

Address

Municipality?: string

The municipality.

Address

Name: string

The name.

Address

Phone?: string

The phone number of the buyer. Note: 1. This attribute is only available for shipping address. 2. In some cases, the buyer phone number is suppressed: a. Phone is suppressed for all AFN (fulfilled by Amazon) orders. b. Phone is suppressed for the shipped MFN (fulfilled by seller) order when the current date is past the Latest Delivery Date.

Address

PostalCode?: string

The postal code.

Address

StateOrRegion?: string

The state or region.

Address