The DeliveryAddress object will be used for the PHYSICAL card delivery. It must be null in case of VIRTUAL card.

interface DeliveryAddress {
    address1: string;
    address2?: string;
    address3?: string;
    city: string;
    countryCode: string;
    postalCode: string;
    state?: string;
}

Properties

address1: string

The first line of the address.

address2?: string

The second line of the address.

address3?: string

The third line of the address.

city: string

Max 30 characters: letters, spaces, hyphen and period

countryCode: string

Delivery address country code. Represents ISO-3166 Alpha 2 country code.

Example

"GB"
postalCode: string

The postal code.

  • For EU customers: Maximum length: 16
  • For US customers: Pattern: ^[a-zA-Z0-9-\ ]*$, Minimum length: 4, Maximum length: 10
state?: string

The field is mandatory for US Customers: 2 to 3 characters state or province abbreviation.

Example

"UT"