## List user's addresses

### cURL

```
curl --request GET \
  --url https://demo.fabric.zone/api-commerceIdentity/user/{userId}/address \
  --header 'x-api-key: <api-key>' \
  --header 'x-site-context: <x-site-context>'
```

### Python

```
import requests

url = "https://demo.fabric.zone/api-commerceIdentity/user/{userId}/address"

headers = {
    "x-site-context": "<x-site-context>",
    "x-api-key": "<api-key>"
}

response = requests.get(url, headers=headers)

print(response.text)
```

### JavaScript

```
const options = {
  method: 'GET',
  headers: {'x-site-context': '<x-site-context>', 'x-api-key': '<api-key>'}
};

fetch('https://demo.fabric.zone/api-commerceIdentity/user/{userId}/address', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
```

### PHP

```
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://demo.fabric.zone/api-commerceIdentity/user/{userId}/address",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "x-api-key: <api-key>",
    "x-site-context: <x-site-context>"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
?>
```

### Go

```
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

url := "https://demo.fabric.zone/api-commerceIdentity/user/{userId}/address"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("x-site-context", "<x-site-context>")
	req.Header.Add("x-api-key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))
}
```

### Unirest (Java)

```
HttpResponse<String> response = Unirest.get("https://demo.fabric.zone/api-commerceIdentity/user/{userId}/address")
  .header("x-site-context", "<x-site-context>")
  .header("x-api-key", "<api-key>")
  .asString();
```

### Ruby

```
require 'uri'
require 'net/http'

url = URI("https://demo.fabric.zone/api-commerceIdentity/user/{userId}/address")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["x-site-context"] = '<x-site-context>'
request["x-api-key"] = '<api-key>'

response = http.request(request)
puts response.read_body
```

### Possible Responses

#### Status Codes
- `200`
- `404`
- `500`

### Successful Response Example
```
[
  {
    "address1": "1234 Main St.",
    "city": "Houston",
    "state": "TX",
    "country": "USA",
    "zipCode": 77035,
    "email": "test@mail.com",
    "isValidated": true,
    "isDefault": true,
    "attention": "Account Manager",
    "address2": "Suite 710",
    "address3": "Floor 7",
    "company": "Acme Inc.",
    "kind": "Business",
    "phone": {
      "number": "555-123-4567",
      "kind": "Mobile"
    },
    "name": {
      "first": "Pat",
      "last": "Kake"
    }
  }
]
```

#### Error Responses
```
{
  "error": "ADDRESS_NOT_FOUND",
  "code": "404",
  "message": "No addresses found"
}
```

```
{
  "error": "INTERNAL_SERVER_ERROR",
  "code": "500",
  "message": "Internal server error"
}
```

### Required Headers
- `x-api-key`: string - required
- `x-site-context`: string - required, a JSON object containing source information (account, channel, stage, etc.).

### Path Parameters
- `userId`: string - required

### Query Parameters
- `kind`: string - user type to return.
