The Account object contains all the information about your Vobiz account, including authentication credentials, pricing tier, verification status, and timestamps.Documentation Index
Fetch the complete documentation index at: https://docs.vobiz.ai/llms.txt
Use this file to discover all available pages before exploring further.
Attributes
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier for the account (e.g., "MA_XXXXXX"). |
api_id | string | Internal API reference identifier. |
name | string | Name of the account or company. |
email | string | Email address associated with the account. |
phone | string | Primary phone number for the account. |
type | string | Account type (e.g., "MASTER", "SUB_ACCOUNT"). |
auth_id | string | Authentication ID used for API requests. |
auth_secret | string | Secret key for authentication (only shown in secure contexts). |
auth_token_expire_time | string | ISO 8601 timestamp when the current auth token expires. |
description | string | null | Optional description or notes for the account. |
company | string | Full legal name of the company. |
address | city | state | zip_code | string | Physical location details for the account. |
country | string | null | Country code or name for the account location. |
timezone | string | Local timezone of the account (e.g., "America/Los_Angeles"). |
account_type | string | Billing model (e.g., "PREPAID", "POSTPAID"). |
postpaid | boolean | Indicates if the account is on a postpaid billing plan. |
auto_recharge | boolean | Whether auto-recharge is enabled for prepaid accounts. |
enabled | boolean | Whether the account is generally enabled for service. |
is_active | boolean | Whether the account is currently active. |
is_verified | boolean | Whether the account identity has been verified. |
is_trial_account | boolean | Indicates if the account is a trial account. |
role | string | Role of the user associated with the account (e.g., "ADMIN", "USER"). |
carrier_type | string | Type of carrier service (e.g., "VOIP", "PSTN"). |
customer_type | string | Type of customer (e.g., "ENTERPRISE", "SMB"). |
credit_limit | string | Maximum credit allowed for postpaid accounts. |
cps_limit | number | Current calls per second limit for the account. |
concurrent_calls_limit | number | Current concurrent calls limit for the account. |
base_cps_limit | number | Base calls per second limit before any purchased add-ons. |
base_concurrent_calls_limit | number | Base concurrent calls limit before any purchased add-ons. |
purchased_cps | number | Additional CPS purchased by the account. |
purchased_concurrent_calls | number | Additional concurrent calls purchased by the account. |
risk_rating | string | Risk assessment rating for the account (e.g., "LOW", "MEDIUM"). |
risk_status | string | Current risk status (e.g., "NORMAL", "FLAGGED"). |
ip_auth_enabled | boolean | Whether IP authentication is enabled for API access. |
ip_whitelist_rules | array | List of IP addresses or CIDR blocks allowed for API access. |
allow_aws_ips | boolean | Whether to allow AWS IP ranges for API access. |
features | object | Map of enabled features like call_queue and transcription_enabled. |
limits | object | Includes cps_limit, concurrent_calls_limit, and base limits. |
pricing_tier_id | string | Unique identifier of the pricing tier assigned to this account. |
pricing_tier | object | Complete pricing tier object with billing rates and descriptions. |
created_at | string | ISO 8601 timestamp when the account was created. |
updated_at | string | ISO 8601 timestamp when the account was last updated. |
last_login | string | ISO 8601 timestamp of the most recent login. |
Example Account Object
Pricing Tier ObjectEach account includes a nested
pricing_tier object that defines billing rates:- name - Name of the pricing tier (e.g.,
"baseTier") - description - A brief description of the pricing plan
- rate_per_minute - Cost per minute of call time in the specified currency
- billing_increment_seconds - Granularity of billing (e.g., 60 = billed by full minutes)
- minimum_duration_seconds - Minimum billable duration for calls
- currency - Currency code (USD, INR, EUR, etc.)