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
| Name | Type | Description |
|---|---|---|
id | string | Unique identifier for the account (e.g., "MA_SYQRLNIK"). |
name | string | Name of the account or company. |
email | string | Email address associated with the account. |
description | string | null | Optional description or notes for the account. |
auth_id | string | Authentication ID used for API requests. |
is_active | boolean | Whether the account is currently active and can make API calls. |
is_verified | boolean | Whether the account email has been verified. |
country | string | null | Country code or name for the account location. |
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. |
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 configuration. |
Example Account Object
JSON
{
"id": "MA_SYQRLNIK",
"name": "Your Company Name",
"email": "admin@yourcompany.com",
"description": null,
"auth_id": "hjzz7OuHHokStqvGKQWm35V1u0PBceHP",
"is_active": true,
"is_verified": false,
"country": null,
"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_id": "1fa3db95-526a-4b5e-86a6-4bcd62ef31fa",
"pricing_tier": {
"id": "1fa3db95-526a-4b5e-86a6-4bcd62ef31fa",
"name": "baseTier",
"currency": "INR",
"rate_per_minute": "0.4500",
"billing_increment_seconds": 60,
"minimum_duration_seconds": 0,
"is_active": true,
"is_default": true
}
}Pricing Tier Object
Each account includes a nested pricing_tier object that defines billing rates:
- 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.)