# 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"
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://faq.droam.com/menu/webhooks/webhook-payload-models/account-address-model.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
