> For the complete documentation index, see [llms.txt](https://faq.droam.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://faq.droam.com/menu/webhooks/webhook-payload-models/account-address-model.md).

# Account Address Model

The Account Address Model is the model that is most often found within the Account Model and contains information about its contact address. Its fields are presented in the table (Table 4.4), with an example (Listing 4.3).&#x20;

**Table 4.4 – Fields of Account Address Model**&#x20;

<table><thead><tr><th width="82">№</th><th>Key</th><th>Type</th><th>Exists</th></tr></thead><tbody><tr><td>1</td><td>house_number</td><td>string</td><td>optional </td></tr><tr><td>2</td><td>street</td><td>string</td><td>optional </td></tr><tr><td>3</td><td>addition </td><td>string</td><td>optional </td></tr><tr><td>4</td><td>city </td><td>string</td><td>optional </td></tr><tr><td>5</td><td>state </td><td>string</td><td>optional </td></tr><tr><td>6</td><td>country_code</td><td>string</td><td>optional </td></tr><tr><td>7</td><td>postal_code</td><td>string</td><td>optional </td></tr></tbody></table>

**Listing 4.3 – Example of Account Address Model (JSON)**

```
{
     "house_number":  "52/1",
     "street":        "Green Street",
     "addition":      "Office 23",
     "city":          "Example City",
     "state":         "Example State",
     "country_code":  "US",
     "postal_code":   "17000"
}
```
