Overview
The Accounts API provides methods for creating, retrieving, updating, and deleting Mention accounts. It supports account configuration including language, timezone, company information, and more.Methods
Create Account
Create a new Mention account.Account name
Account email address
Account password
Company name (optional)
Language code (default: en)
Timezone (default: UTC)
Account object
Example:
Get Account
Retrieve account information by ID.The account ID
Account object
Example:
Get Current Account
Retrieve the current authenticated user’s account information.Account object for the authenticated user
Example:
Update Account
Update account information.The account ID
New account name (optional)
New email address (optional)
New company name (optional)
New language code (optional)
New timezone (optional)
Account object
Example:
Delete Account
Delete an account permanently.The account ID
True if deletion was successful
Example:
Models
Account
Represents a Mention account.| Field | Type | Description |
|---|---|---|
id | string | Account ID |
name | string | Account name |
email | string | Email address |
company | string | Company name |
plan | string | Subscription plan |
quota | AccountQuota | Account quotas and limits |
stats | AccountStats | Account usage statistics |
timezone | string | Account timezone |
language | string | Account language |
features | list[string] | Enabled features |
is_admin | boolean | Admin status |
subscription_expires_at | datetime | Subscription expiration |
created_at | datetime | Creation timestamp |
updated_at | datetime | Last update timestamp |
AccountQuota
Account quota and limits.| Field | Type | Description |
|---|---|---|
alerts | integer | Maximum number of alerts |
mentions | integer | Maximum number of mentions |
mentions_without_archive | integer | Mentions limit without archive |
api_calls | integer | API calls limit |
AccountStats
Account usage statistics.| Field | Type | Description |
|---|---|---|
alerts_count | integer | Number of alerts |
mentions_count | integer | Total mentions |
unread_mentions_count | integer | Unread mentions |