> For the complete documentation index, see [llms.txt](https://docs.ilert.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ilert.com/developer-docs/rest-api/api-reference/account.md).

# Account

## Get the account of the currently authenticated caller.

> Returns the account settings and the plan the account is subscribed to.

```json
{"openapi":"3.0.1","info":{"title":"ilert REST API","version":"v2.2026.9-r.4"},"tags":[{"name":"Account"}],"servers":[{"url":"/api"}],"security":[{"apiKey":[]}],"components":{"securitySchemes":{"apiKey":{"type":"apiKey","description":"The Bearer API key of your user <a href='/api-docs/#section/Authentication'>more info</a>.","name":"Authorization","in":"header"}},"schemas":{"Account":{"type":"object","readOnly":true,"properties":{"id":{"type":"string","description":"Unique identifier of the account."},"organizationName":{"type":"string","description":"Name of the organization owning the account."},"timezone":{"type":"string","description":"Default time zone of the account as an IANA time zone name, for example `Europe/Berlin`."},"language":{"type":"string","description":"Default language of the account as an ISO 639-1 code, either `en` or `de`."},"region":{"type":"string","description":"Default country of the account as an ISO 3166-1 alpha-2 code, for example `DE`."},"enforceMobileProtection":{"type":"boolean","description":"Whether users of the ilert mobile app must unlock it with an additional authentication layer, such as a PIN or biometrics."},"allowAdminSeatPurchase":{"type":"boolean","description":"Whether admins may purchase additional seats when creating users, rather than the account owner only."},"aiMode":{"$ref":"#/components/schemas/AiMode"},"applicationFeatures":{"type":"array","description":"Features unlocked for the account by its plan and add-ons. The set of possible values grows as ilert ships new features and is not part of the stable contract.","items":{"type":"string"}},"subscription":{"$ref":"#/components/schemas/AccountSubscription"}}},"AiMode":{"type":"string","description":"Where AI features of the account are allowed to run. `EU` restricts processing to European regions, `DISABLED` turns AI features off.","enum":["DISABLED","ALL","EU"]},"AccountSubscription":{"type":"object","readOnly":true,"description":"The plan the account is currently subscribed to.","properties":{"name":{"type":"string","description":"Display name of the plan."},"status":{"$ref":"#/components/schemas/SubscriptionStatus"}}},"SubscriptionStatus":{"type":"string","description":"Lifecycle state of the subscription.","enum":["TRIAL","FREE","ACTIVE","CANCELED","UNPAID","INCOMPLETE","INCOMPLETE_EXPIRED","PAST_DUE"]}}},"paths":{"/tenants/current":{"get":{"tags":["Account"],"summary":"Get the account of the currently authenticated caller.","description":"Returns the account settings and the plan the account is subscribed to.","responses":{"200":{"description":"account object","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Account"}}}}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.ilert.com/developer-docs/rest-api/api-reference/account.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
