object OrderAddress

Order type for addresses. Orders have addresses with more details than the rest of the system so we use our own types

Fields

FieldTypeDescription
first_nameString

First name for the address or contact.

last_nameString

Last name for the address or contact.

companyString

Company for the address or contact.

address1String

Address line 1 for the address or contact.

address2String

Address line 2 for the address or contact.

cityString

City for the address or contact.

stateString

State or province code for state.

state_codeString

State or province code for state code.

zipString

Postal or ZIP code.

countryString

ISO country code for country.

country_codeString

ISO country code for country code.

emailString

Email address for the contact.

phoneString

Phone number for the contact.

Referenced By

Example

{
  "first_name": "Ada",
  "last_name": "Lovelace",
  "company": "Acme Corp",
  "address1": "123 Fulfillment Ave",
  "address2": "Suite 100",
  "city": "New York",
  "state": "NY",
  "state_code": "NY",
  "zip": "10001",
  "country": "US",
  "country_code": "US",
  "email": "customer@example.com",
  "phone": "+1-555-0100"
}