Address is a common object that you can find on Cart, Customers and Orders.

Attributes

TitleTypeDescription
idintID of the address
shippingarrayContains shipping info. Fields:
first_name
last_name
company
street
suite
city
country
state
* zip
billingarrayContains billing info. Fields:
first_name
last_name
company
street
suite
city
country
state
* zip
phonestringPhone number
"address": [
  {
    "id": 7932,
    "shipping": {
      "first_name": "First",
      "last_name": "Last",
      "company": "Company name",
      "street": "Street",
      "suite": "1B",
      "city": "Stocktown",
      "country": "US",
      "state": "CA",
      "zip": "12345"
  },
  "billing": {
      "first_name": "First",
      "last_name": "Last",
      "company": "Company name",
      "street": "Street",
      "suite": "1B",
      "city": "Stocktown",
      "country": "US",
      "state": "CA",
      "zip": "12345"
    },
  "phone": "123456789"
}