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

NameTypeDescription
id
stringUnique identifier for the account (e.g., "MA_SYQRLNIK").
name
stringName of the account or company.
email
stringEmail address associated with the account.
description
string | nullOptional description or notes for the account.
auth_id
stringAuthentication ID used for API requests.
is_active
booleanWhether the account is currently active and can make API calls.
is_verified
booleanWhether the account email has been verified.
country
string | nullCountry code or name for the account location.
created_at
stringISO 8601 timestamp when the account was created.
updated_at
stringISO 8601 timestamp when the account was last updated.
last_login
stringISO 8601 timestamp of the most recent login.
pricing_tier_id
stringUnique identifier of the pricing tier assigned to this account.
pricing_tier
objectComplete 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.)