AddressWithName Data Type

Information about a geographical location, including the name of the resident/tenant. This object is used often as delivery addresses, where you also want to store the name of the delivery recipient.

Properties
name data type description
firstName string The first name of the recipient. Mutually exclusive with companyName.
lastName string The last name of the recipient. Mutually exclusive with companyName.
companyName string The company name of the recipient. Mutually exclusive with firstName and lastName.
countryCode string The country of the address, in ISO alpha-2 format, for example SE.
addressLine1 string The first address line, usually street address.
careOf string The care of (c/o) extension of the address.
city string The city of the address.
zipcode string The zipcode/postal code of the address.
administrativeDivision string The administrative division, such as region or state.

Example

{
  "firstName" : "...",
  "lastName" : "...",
  "companyName" : "Viskan System AB",
  "countryCode" : "SE",
  "addressLine1" : "Druveforsvägen 8",
  "careOf" : "...",
  "city" : "BORÅS",
  "zipcode" : "50454",
  "administrativeDivision" : "..."
}