Addresses

customer Address Repository V1Get By Id Get

Retrieve customer address.

get

/V1/customers/addresses/{addressId}

Path parameters
addressIdstringrequired

(Required)

Example: <integer>
Responses
curl -L \
  --url 'http://{{baseurl}}/V1/customers/addresses/{addressId}'
{
  "id": "<integer>",
  "customer_id": "<integer>",
  "region": {
    "region_code": "<string>",
    "region": "<string>",
    "region_id": "<integer>",
    "extension_attributes": "<object>"
  },
  "region_id": "<integer>",
  "country_id": "<string>",
  "street": [
    "<string>",
    "<string>"
  ],
  "company": "<string>",
  "telephone": "<string>",
  "fax": "<string>",
  "postcode": "<string>",
  "city": "<string>",
  "firstname": "<string>",
  "lastname": "<string>",
  "middlename": "<string>",
  "prefix": "<string>",
  "suffix": "<string>",
  "vat_id": "<string>",
  "default_shipping": "<boolean>",
  "default_billing": "<boolean>",
  "extension_attributes": "<object>",
  "custom_attributes": [
    {
      "attribute_code": "velit labore mollit",
      "value": "dolor aute"
    },
    {
      "attribute_code": "velit enim",
      "value": "Excepteur minim incididunt Duis"
    }
  ]
}