> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Resource: Account Details # Type: Account Details Object # Link: https://dev.wix.com/docs/api-reference/business-management/marketing/emails/email-marketing/account-details/account-details-object.md ## Description: An account can be active or in some state of suspension (warned/suspended/banned). If a user is in a state of suspension they must visit their email marketing account in the dashboard and follow the instructions. ## Schema: ```json Type: Account Details Object | type: AccountDetails Description: An account can be active or in some state of suspension (warned/suspended/banned). If a user is in a state of suspension they must visit their email marketing account in the dashboard and follow the instructions. - name: status | type: string | description: Account status. enum: ACTIVE, WARNED, SUSPENDED, BANNED, SUSPENDED_AUTOLIFT - name: package | type: Package | description: Current premium package information. - name: id | type: string | description: Package ID. - name: group | type: string | description: Package group. - name: monthlyQuotaAllocation | type: Quota | description: Allocated quota per month. - name: campaigns | type: number | description: Number of allocated marketing campaigns per month (-1 means unlimited). - name: emails | type: number | description: Number of allocated individual emails per month. - name: quotaPeriod | type: QuotaPeriod | description: Quota period and usage. - name: dateFrom | type: string | description: Current quota period start date. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: dateTo | type: string | description: Current quota period end date - after which quota will roll over. - name: quotaUsage | type: Quota | description: Information about allocated quota already used in this period. - name: maxCampaignAudienceSize | type: number | description: Max number of recipients for an email marketing campaign. Exceeding this limit may lead to campaigns being rejected. ```