Returns all customer sub-accounts under your partner account.
curl --request GET \
--url https://api.vobiz.ai/api/v1/partner/accounts \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>'{
"accounts": [
{
"name": "Acme Corp",
"email": "admin@acme-corp.com",
"phone": "+919876543210",
"description": null,
"gstin": null,
"gst_status": null,
"tds_enabled": false,
"tds_percentage": 2,
"business_type": "individual",
"id": "500000",
"auth_id": "MA_XXXXXXXX",
"api_id": "aabbccdd-1234-5678-90ab-cdef12345678",
"account_type": "standard",
"role": "user",
"postpaid": false,
"address": "221B Baker Street",
"city": "Mumbai",
"state": null,
"timezone": "Asia/Kolkata",
"country": "IN",
"zip_code": "400001",
"company": "Acme Corp",
"billing_mode": "prepaid",
"auto_recharge": false,
"cash_credits": "1300.00000",
"cps_limit": 1,
"concurrent_calls_limit": 4,
"base_cps_limit": null,
"base_concurrent_calls_limit": null,
"purchased_cps": null,
"purchased_concurrent_calls": null,
"is_active": true,
"is_verified": false,
"is_trial_account": false,
"enabled": true,
"kyc_status": "pending",
"google_id": null,
"referral_code": null,
"referral_disabled": false,
"custom_referrer_reward_amount": null,
"custom_referee_reward_amount": null,
"created_at": "2026-03-25T10:00:00Z",
"updated_at": "2026-03-26T11:54:13Z",
"last_login": "2026-03-25T10:16:47Z",
"pricing_tier_id": "11223344-1234-5678-90ab-cdef12345678",
"pricing_tier": {
"id": "11223344-1234-5678-90ab-cdef12345678",
"name": "Standard",
"currency": "INR",
"rate_per_minute": 0.45,
"streaming_rate_per_minute": 0.2,
"recording_rate_per_minute": 0.1,
"whatsapp_voice_rate": 0.45,
"transcription_rate_per_minute": 0.1,
"pii_redaction_rate_per_minute": 0.3,
"charge_non_connected_calls": true,
"non_connected_call_fee": 0.02,
"did_release_fee": 700,
"is_active": true,
"is_default": false,
"partner_id": null
},
"partner_id": "99887766-1234-5678-90ab-cdef12345678",
"auto_recharge_config": null,
"resource_uri": "/v1/Account/MA_XXXXXXXX/",
"auth_token": "<redacted>"
},
{
"name": "John Doe",
"email": "john@example.com",
"phone": "+918012345678",
"description": null,
"gstin": null,
"gst_status": null,
"tds_enabled": false,
"tds_percentage": 2,
"business_type": "individual",
"id": "500001",
"auth_id": "MA_YYYYYYYY",
"api_id": "55667788-1234-5678-90ab-cdef12345678",
"account_type": "standard",
"role": "user",
"postpaid": false,
"address": null,
"city": null,
"state": null,
"timezone": null,
"country": "IN",
"zip_code": null,
"company": "Acme Corp",
"billing_mode": "prepaid",
"auto_recharge": false,
"cash_credits": "1107.00000",
"cps_limit": 1,
"concurrent_calls_limit": 3,
"base_cps_limit": null,
"base_concurrent_calls_limit": null,
"purchased_cps": null,
"purchased_concurrent_calls": null,
"is_active": true,
"is_verified": false,
"is_trial_account": false,
"enabled": true,
"kyc_status": "pending",
"google_id": null,
"referral_code": null,
"referral_disabled": false,
"custom_referrer_reward_amount": null,
"custom_referee_reward_amount": null,
"created_at": "2026-03-20T05:58:46Z",
"updated_at": "2026-03-21T05:13:16Z",
"last_login": null,
"pricing_tier_id": "11223344-1234-5678-90ab-cdef12345678",
"pricing_tier": {
"id": "11223344-1234-5678-90ab-cdef12345678",
"name": "Standard",
"currency": "INR",
"rate_per_minute": 0.45,
"streaming_rate_per_minute": 0.2,
"recording_rate_per_minute": 0.1,
"whatsapp_voice_rate": 0.45,
"transcription_rate_per_minute": 0.1,
"pii_redaction_rate_per_minute": 0.3,
"charge_non_connected_calls": true,
"non_connected_call_fee": 0.02,
"did_release_fee": 700,
"is_active": true,
"is_default": false,
"partner_id": null
},
"partner_id": "99887766-1234-5678-90ab-cdef12345678",
"auto_recharge_config": null,
"resource_uri": "/v1/Account/MA_YYYYYYYY/",
"auth_token": "<redacted>"
}
],
"total": 2,
"page": 1,
"size": 20
}← Partner API Reference The core of the Partner API. Provision SIP-enabled sub-accounts for your clients, inspect their profiles, and monitor their real-time wallet balances. Each customer receives anDocumentation Index
Fetch the complete documentation index at: https://docs.vobiz.ai/llms.txt
Use this file to discover all available pages before exploring further.
auth_id that serves as the primary key for all subsequent operations.
X-Auth-ID and X-Auth-Token headers. See Authentication for details.| Method | Endpoint | Description |
|---|---|---|
| POST | /accounts | Create a new customer sub-account |
| GET | /accounts | List all customer accounts (paginated) |
| GET | /accounts/{customer_auth_id} | Get full profile for a specific customer |
| GET | /accounts/{customer_auth_id}/balance | Get real-time wallet balance for a customer |
| Field | Type | Required | Description |
|---|---|---|---|
name | string | Required | Customer’s full name |
email | string | Required | Customer email - used for login and KYC notifications |
password | string | Required | Customer login password (min 8 chars, must include number and special char) |
phone | string | Optional | E.164 phone number, e.g. +919876543210 |
description | string | Optional | Free-text description of the customer’s use case |
company | string | Optional | Legal company or business name |
address | string | Optional | Street address |
city | string | Optional | City |
state | string | Optional | State or region |
zip_code | string | Optional | Postal/ZIP code |
country | string | Required | ISO 2-letter country code, e.g. IN |
timezone | string | Optional | IANA timezone, e.g. Asia/Kolkata |
gstin | string | Optional | GSTIN for tax invoicing (India) |
gst_status | string | Optional | active or inactive |
account_type | string | Optional | standard (default) or other plan tier |
curl -X POST \
"https://api.vobiz.ai/api/v1/partner/accounts" \
-H "X-Auth-ID: {your_partner_id}" \
-H "X-Auth-Token: {your_auth_token}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
"name": "John Doe",
"email": "admin@example.com",
"password": "<redacted>",
"phone": "+919876543210",
"description": "Outbound collections calling team",
"company": "Acme Corp",
"address": "1 MG Road",
"city": "Bengaluru",
"state": "KA",
"zip_code": "560001",
"country": "IN",
"timezone": "Asia/Kolkata",
"gstin": "29AAPFU0939F1ZV",
"gst_status": "active",
"account_type": "standard"
}'
{
"auth_id": "MA_XXXXXXXX",
"auth_token": "<redacted>",
"name": "John Doe",
"email": "john@example.com",
"status": "active",
"balance": 0.00,
"currency": "INR",
"country": "IN",
"created_at": "2026-03-25T10:00:00Z"
}
auth_id immediately. The returned auth_id is the customer’s permanent identifier for all balance transfers, CDR lookups, transaction queries, and number assignments. Save it to your database as the primary foreign key.search to find a specific customer by name or email.
| Parameter | Default | Description |
|---|---|---|
page | 1 | Page number (1-indexed) |
size | 20 | Items per page (max 100) |
search | - | Filter by customer name or email |
curl -X GET \
"https://api.vobiz.ai/api/v1/partner/accounts?page=1&size=20" \
-H "X-Auth-ID: {your_partner_id}" \
-H "X-Auth-Token: {your_auth_token}" \
-H "Accept: application/json"
curl -X GET \
"https://api.vobiz.ai/api/v1/partner/accounts?page=1&size=20&search=Acme" \
-H "X-Auth-ID: {your_partner_id}" \
-H "X-Auth-Token: {your_auth_token}" \
-H "Accept: application/json"
{
"accounts": [
{
"name": "John Doe",
"email": "john@example.com",
"phone": "+919876543210",
"description": null,
"gstin": null,
"gst_status": null,
"tds_enabled": false,
"tds_percentage": 2,
"business_type": "individual",
"id": "500000",
"auth_id": "MA_XXXXXXXX",
"api_id": "aabbccdd-1234-5678-90ab-cdef12345678",
"account_type": "standard",
"role": "user",
"postpaid": false,
"address": "1 MG Road",
"city": "Bengaluru",
"state": "KA",
"timezone": "Asia/Kolkata",
"country": "IN",
"zip_code": "560001",
"company": "Acme Corp",
"billing_mode": "prepaid",
"auto_recharge": false,
"cash_credits": "1300.00000",
"cps_limit": 1,
"concurrent_calls_limit": 4,
"base_cps_limit": null,
"base_concurrent_calls_limit": null,
"purchased_cps": null,
"purchased_concurrent_calls": null,
"is_active": true,
"is_verified": false,
"is_trial_account": false,
"enabled": true,
"kyc_status": "pending",
"google_id": null,
"referral_code": null,
"referral_disabled": false,
"custom_referrer_reward_amount": null,
"custom_referee_reward_amount": null,
"created_at": "2026-05-06T07:12:40.437143+00:00",
"updated_at": "2026-05-07T11:54:13.620089+00:00",
"last_login": "2026-05-06T07:16:47.457817+00:00",
"pricing_tier_id": "11223344-1234-5678-90ab-cdef12345678",
"pricing_tier": {
"id": "11223344-1234-5678-90ab-cdef12345678",
"name": "Standard",
"currency": "INR",
"rate_per_minute": 0.45,
"streaming_rate_per_minute": 0.2,
"recording_rate_per_minute": 0.1,
"whatsapp_voice_rate": 0.45,
"transcription_rate_per_minute": 0.1,
"pii_redaction_rate_per_minute": 0.3,
"charge_non_connected_calls": true,
"non_connected_call_fee": 0.02,
"did_release_fee": 700,
"is_active": true,
"is_default": false,
"partner_id": null
},
"partner_id": "aabbccdd-1234-5678-90ab-cdef12345678",
"auto_recharge_config": null,
"resource_uri": "/v1/Account/MA_XXXXXXXX/",
"auth_token": "<redacted>"
}
],
"total": 23,
"page": 1,
"size": 20
}
curl -X GET \
"https://api.vobiz.ai/api/v1/partner/accounts/{customer_auth_id}" \
-H "X-Auth-ID: {your_partner_id}" \
-H "X-Auth-Token: {your_auth_token}" \
-H "Accept: application/json"
{
"name": "John Doe",
"email": "john@example.com",
"phone": "+919876543210",
"description": null,
"gstin": null,
"gst_status": null,
"tds_enabled": false,
"tds_percentage": 2,
"business_type": "individual",
"id": "500000",
"auth_id": "MA_XXXXXXXX",
"api_id": "aabbccdd-1234-5678-90ab-cdef12345678",
"account_type": "standard",
"role": "user",
"postpaid": false,
"address": "1 MG Road",
"city": "Bengaluru",
"state": "KA",
"timezone": "Asia/Kolkata",
"country": "IN",
"zip_code": "560001",
"company": "Acme Corp",
"billing_mode": "prepaid",
"auto_recharge": false,
"cash_credits": "1300.00000",
"cps_limit": 1,
"concurrent_calls_limit": 4,
"is_active": true,
"is_verified": false,
"is_trial_account": false,
"enabled": true,
"kyc_status": "pending",
"created_at": "2026-05-06T07:12:40.437143+00:00",
"updated_at": "2026-05-07T11:54:13.620089+00:00",
"last_login": "2026-05-06T07:16:47.457817+00:00",
"pricing_tier_id": "11223344-1234-5678-90ab-cdef12345678",
"pricing_tier": {
"id": "11223344-1234-5678-90ab-cdef12345678",
"name": "Standard",
"currency": "INR",
"rate_per_minute": 0.45,
"is_active": true,
"is_default": false,
"partner_id": null
},
"partner_id": "aabbccdd-1234-5678-90ab-cdef12345678",
"auto_recharge_config": null,
"resource_uri": "/v1/Account/MA_XXXXXXXX/",
"auth_token": "<redacted>"
}
curl -X GET \
"https://api.vobiz.ai/api/v1/partner/accounts/{customer_auth_id}/balance" \
-H "X-Auth-ID: {your_partner_id}" \
-H "X-Auth-Token: {your_auth_token}" \
-H "Accept: application/json"
{
"auth_id": "MA_XXXXXXXX",
"name": "John Doe",
"cash_credits": "1300.00000",
"currency": "INR",
"updated_at": "2026-05-07T11:54:13.620089+00:00"
}
auth_id in your database.Your Vobiz account Auth ID
Your Vobiz account Auth Token
Substring match on name or email.
Was this page helpful?
curl --request GET \
--url https://api.vobiz.ai/api/v1/partner/accounts \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>'{
"accounts": [
{
"name": "Acme Corp",
"email": "admin@acme-corp.com",
"phone": "+919876543210",
"description": null,
"gstin": null,
"gst_status": null,
"tds_enabled": false,
"tds_percentage": 2,
"business_type": "individual",
"id": "500000",
"auth_id": "MA_XXXXXXXX",
"api_id": "aabbccdd-1234-5678-90ab-cdef12345678",
"account_type": "standard",
"role": "user",
"postpaid": false,
"address": "221B Baker Street",
"city": "Mumbai",
"state": null,
"timezone": "Asia/Kolkata",
"country": "IN",
"zip_code": "400001",
"company": "Acme Corp",
"billing_mode": "prepaid",
"auto_recharge": false,
"cash_credits": "1300.00000",
"cps_limit": 1,
"concurrent_calls_limit": 4,
"base_cps_limit": null,
"base_concurrent_calls_limit": null,
"purchased_cps": null,
"purchased_concurrent_calls": null,
"is_active": true,
"is_verified": false,
"is_trial_account": false,
"enabled": true,
"kyc_status": "pending",
"google_id": null,
"referral_code": null,
"referral_disabled": false,
"custom_referrer_reward_amount": null,
"custom_referee_reward_amount": null,
"created_at": "2026-03-25T10:00:00Z",
"updated_at": "2026-03-26T11:54:13Z",
"last_login": "2026-03-25T10:16:47Z",
"pricing_tier_id": "11223344-1234-5678-90ab-cdef12345678",
"pricing_tier": {
"id": "11223344-1234-5678-90ab-cdef12345678",
"name": "Standard",
"currency": "INR",
"rate_per_minute": 0.45,
"streaming_rate_per_minute": 0.2,
"recording_rate_per_minute": 0.1,
"whatsapp_voice_rate": 0.45,
"transcription_rate_per_minute": 0.1,
"pii_redaction_rate_per_minute": 0.3,
"charge_non_connected_calls": true,
"non_connected_call_fee": 0.02,
"did_release_fee": 700,
"is_active": true,
"is_default": false,
"partner_id": null
},
"partner_id": "99887766-1234-5678-90ab-cdef12345678",
"auto_recharge_config": null,
"resource_uri": "/v1/Account/MA_XXXXXXXX/",
"auth_token": "<redacted>"
},
{
"name": "John Doe",
"email": "john@example.com",
"phone": "+918012345678",
"description": null,
"gstin": null,
"gst_status": null,
"tds_enabled": false,
"tds_percentage": 2,
"business_type": "individual",
"id": "500001",
"auth_id": "MA_YYYYYYYY",
"api_id": "55667788-1234-5678-90ab-cdef12345678",
"account_type": "standard",
"role": "user",
"postpaid": false,
"address": null,
"city": null,
"state": null,
"timezone": null,
"country": "IN",
"zip_code": null,
"company": "Acme Corp",
"billing_mode": "prepaid",
"auto_recharge": false,
"cash_credits": "1107.00000",
"cps_limit": 1,
"concurrent_calls_limit": 3,
"base_cps_limit": null,
"base_concurrent_calls_limit": null,
"purchased_cps": null,
"purchased_concurrent_calls": null,
"is_active": true,
"is_verified": false,
"is_trial_account": false,
"enabled": true,
"kyc_status": "pending",
"google_id": null,
"referral_code": null,
"referral_disabled": false,
"custom_referrer_reward_amount": null,
"custom_referee_reward_amount": null,
"created_at": "2026-03-20T05:58:46Z",
"updated_at": "2026-03-21T05:13:16Z",
"last_login": null,
"pricing_tier_id": "11223344-1234-5678-90ab-cdef12345678",
"pricing_tier": {
"id": "11223344-1234-5678-90ab-cdef12345678",
"name": "Standard",
"currency": "INR",
"rate_per_minute": 0.45,
"streaming_rate_per_minute": 0.2,
"recording_rate_per_minute": 0.1,
"whatsapp_voice_rate": 0.45,
"transcription_rate_per_minute": 0.1,
"pii_redaction_rate_per_minute": 0.3,
"charge_non_connected_calls": true,
"non_connected_call_fee": 0.02,
"did_release_fee": 700,
"is_active": true,
"is_default": false,
"partner_id": null
},
"partner_id": "99887766-1234-5678-90ab-cdef12345678",
"auto_recharge_config": null,
"resource_uri": "/v1/Account/MA_YYYYYYYY/",
"auth_token": "<redacted>"
}
],
"total": 2,
"page": 1,
"size": 20
}