> 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-model.md).

# Account Model

Account Model - is a base model for show platform account parameters. The fields of the Account model are presented in the table (Table 4.1), with an example below (Listing 4.1). There are the following types of this model (Table 4.2).

**Table 4.1 - Fields of Account Model**

<table data-full-width="false"><thead><tr><th width="68">№</th><th width="195" align="center">Key</th><th width="143" align="center">Type</th><th width="97">Exists</th><th>Description</th></tr></thead><tbody><tr><td>1</td><td align="center">uuid</td><td align="center">uuid v4, string</td><td>required</td><td>Main identifier of account</td></tr><tr><td>2</td><td align="center">name</td><td align="center">string</td><td>required</td><td>Public name of account</td></tr><tr><td>3</td><td align="center">status</td><td align="center">Status Model</td><td>optional</td><td>Platform Account Status</td></tr><tr><td>4</td><td align="center">currency_code</td><td align="center">string</td><td>optional</td><td>"EUR" , "USD" , etc.</td></tr><tr><td>5</td><td align="center">email_for_notification</td><td align="center">string</td><td>optional</td><td>If account has this parameter</td></tr><tr><td>6</td><td align="center">vat_number</td><td align="center">string</td><td>optional</td><td>Unique identifier of taxable person</td></tr><tr><td>7</td><td align="center">address</td><td align="center">Account Address Model</td><td>optional</td><td>If account has any of address parameters</td></tr></tbody></table>

**Listing 4.1 – Example of Account Model (JSON)**

```
{
     "uuid":                    "ff472de7-59b2-425d-96ec-9d1ff4bab684",
     "name":                    "Example Company",
     "status":                  {...//Status Model},
     "currency_code":           "EUR",
     "email_for_notification":  "email.notif@gmail.com",
     "vat_number":              "123456789",
     "address":                 {...//Account Address Model}
}
```

**Table 4.2 - Account Type**

<table data-full-width="false"><thead><tr><th width="76">№</th><th width="148">Title</th><th>Description</th></tr></thead><tbody><tr><td>1</td><td>Admin</td><td>Has highest rules</td></tr><tr><td>2</td><td>Organisation</td><td>Has more rules than Companies and End Users and manages them</td></tr><tr><td>3</td><td>Company</td><td>Has more rules than End Users and manages them</td></tr><tr><td>4</td><td>End User</td><td>Main account of user with basic rules</td></tr></tbody></table>
