The Account Object
The Account object contains all the information about your Vobiz account, including authentication credentials, pricing tier, verification status, and timestamps.
Attributes
Account Attributes
| Parameter | Type | Description |
|---|---|---|
idoptional | string | Unique identifier for the account (e.g., "MA_XXXXXX"). |
api_idoptional | string | Internal API reference identifier. |
nameoptional | string | Name of the account or company. |
emailoptional | string | Email address associated with the account. |
phoneoptional | string | Primary phone number for the account. |
typeoptional | string | Account type (e.g., "MASTER", "SUB_ACCOUNT"). |
auth_idoptional | string | Authentication ID used for API requests. |
auth_secretoptional | string | Secret key for authentication (only shown in secure contexts). |
auth_token_expire_timeoptional | string | ISO 8601 timestamp when the current auth token expires. |
descriptionoptional | string | null | Optional description or notes for the account. |
companyoptional | string | Full legal name of the company. |
address | city | state | zip_codeoptional | string | Physical location details for the account. |
countryoptional | string | null | Country code or name for the account location. |
timezoneoptional | string | Local timezone of the account (e.g., "America/Los_Angeles"). |
account_typeoptional | string | Billing model (e.g., "PREPAID", "POSTPAID"). |
postpaidoptional | boolean | Indicates if the account is on a postpaid billing plan. |
auto_rechargeoptional | boolean | Whether auto-recharge is enabled for prepaid accounts. |
enabledoptional | boolean | Whether the account is generally enabled for service. |
is_activeoptional | boolean | Whether the account is currently active. |
is_verifiedoptional | boolean | Whether the account identity has been verified. |
is_trial_accountoptional | boolean | Indicates if the account is a trial account. |
roleoptional | string | Role of the user associated with the account (e.g., "ADMIN", "USER"). |
carrier_typeoptional | string | Type of carrier service (e.g., "VOIP", "PSTN"). |
customer_typeoptional | string | Type of customer (e.g., "ENTERPRISE", "SMB"). |
credit_limitoptional | string | Maximum credit allowed for postpaid accounts. |
cps_limitoptional | number | Current calls per second limit for the account. |
concurrent_calls_limitoptional | number | Current concurrent calls limit for the account. |
base_cps_limitoptional | number | Base calls per second limit before any purchased add-ons. |
base_concurrent_calls_limitoptional | number | Base concurrent calls limit before any purchased add-ons. |
purchased_cpsoptional | number | Additional CPS purchased by the account. |
purchased_concurrent_callsoptional | number | Additional concurrent calls purchased by the account. |
risk_ratingoptional | string | Risk assessment rating for the account (e.g., "LOW", "MEDIUM"). |
risk_statusoptional | string | Current risk status (e.g., "NORMAL", "FLAGGED"). |
ip_auth_enabledoptional | boolean | Whether IP authentication is enabled for API access. |
ip_whitelist_rulesoptional | array | List of IP addresses or CIDR blocks allowed for API access. |
allow_aws_ipsoptional | boolean | Whether to allow AWS IP ranges for API access. |
featuresoptional | object | Map of enabled features like call_queue and transcription_enabled. |
limitsoptional | object | Includes cps_limit, concurrent_calls_limit, and base limits. |
pricing_tier_idoptional | string | Unique identifier of the pricing tier assigned to this account. |
pricing_tieroptional | object | Complete pricing tier object with billing rates and descriptions. |
created_atoptional | string | ISO 8601 timestamp when the account was created. |
updated_atoptional | string | ISO 8601 timestamp when the account was last updated. |
last_loginoptional | string | ISO 8601 timestamp of the most recent login. |
Example Account Object
JSON
{
"id": "MA_XXXXXX",
"api_id": "api_v1_XXXXXX",
"name": "Acme Corporation",
"email": "admin@company.com",
"phone": "+1234567890",
"type": "MASTER",
"auth_id": "YOUR_AUTH_ID",
"auth_secret": "sk_live_XXXXXXXXXXXXXXXXXXXX",
"auth_token_expire_time": "2025-11-22T03:16:12Z",
"description": null,
"company": "Acme Corp LLC",
"address": "123 Tech Lane",
"city": "Innovation City",
"state": "California",
"zip_code": "90001",
"country": "US",
"timezone": "America/Los_Angeles",
"account_type": "PREPAID",
"postpaid": false,
"auto_recharge": true,
"enabled": true,
"is_active": true,
"is_verified": true,
"is_trial_account": false,
"role": "ADMIN",
"carrier_type": "VOIP",
"customer_type": "ENTERPRISE",
"credit_limit": "100.00",
"cps_limit": 10,
"concurrent_calls_limit": 50,
"base_cps_limit": 5,
"base_concurrent_calls_limit": 25,
"purchased_cps": 5,
"purchased_concurrent_calls": 25,
"risk_rating": "LOW",
"risk_status": "NORMAL",
"ip_auth_enabled": false,
"ip_whitelist_rules": [],
"allow_aws_ips": true,
"features": {
"call_queue": true,
"transcription_enabled": true
},
"pricing_tier_id": "1fa3db95-526a-4b5e-86a6-4bcd62ef31fa",
"pricing_tier": {
"id": "1fa3db95-526a-4b5e-86a6-4bcd62ef31fa",
"name": "baseTier",
"description": "Standard enterprise pricing plan",
"currency": "INR",
"rate_per_minute": "0.4500",
"billing_increment_seconds": 60,
"minimum_duration_seconds": 0,
"is_active": true,
"is_default": true
},
"created_at": "2025-10-17T08:51:00.552579Z",
"updated_at": "2025-10-22T03:16:11.815251Z",
"last_login": "2025-10-22T03:16:12.901344Z"
}Pricing Tier Object
Each 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.)