Selling Partner API SDK for JavaScript
    Preparing search index...

    The address.

    interface Address {
        addressLine1: string;
        addressLine2?: string;
        addressLine3?: string;
        city: string;
        companyName?: string;
        countryCode: string;
        email?: string;
        geocode?: Geocode;
        name: string;
        phoneNumber?: string;
        postalCode: string;
        stateOrRegion: string;
    }
    Index

    Properties

    addressLine1: string

    The first line of the address.

    addressLine2?: string

    Additional address information, if required.

    addressLine3?: string

    Additional address information, if required.

    city: string

    The city or town where the person, business or institution is located.

    companyName?: string

    The name of the business or institution associated with the address.

    countryCode: string

    The two digit country code. Follows ISO 3166-1 alpha-2 format.

    email?: string

    The email address of the contact associated with the address.

    geocode?: Geocode
    name: string

    The name of the person, business or institution at the address.

    phoneNumber?: string

    The phone number of the person, business or institution located at that address, including the country calling code.

    postalCode: string

    The postal code of that address. It contains a series of letters or digits or both, sometimes including spaces or punctuation.

    stateOrRegion: string

    The state, county or region where the person, business or institution is located.