Skip to main content
GET
/
api
/
v1
/
partner
/
me
Get partner profile
curl --request GET \
  --url https://api.vobiz.ai/api/v1/partner/me \
  --header 'X-Auth-ID: <api-key>' \
  --header 'X-Auth-Token: <api-key>'
{
  "auth_id": "PA_ABC123",
  "name": "Acme Reseller",
  "email": "partner@acme.com",
  "balance": 50000,
  "currency": "INR",
  "country": "IN",
  "created_at": "2025-01-15T10:00:00Z"
}

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.

← Partner API Reference Retrieve your partner identity, billing configuration, GST status, and current balance. The profile endpoint is the authoritative source for your permanent partner id - required as a filter parameter in Transaction and CDR queries.
All Partner API requests use X-Auth-ID and X-Auth-Token headers. See Authentication for details.

Get Partner Profile

Retrieve your full partner profile, including identity, balance, GST configuration, and permanent partner ID. No request body or query parameters are required.
curl -X GET \
  "https://api.vobiz.ai/api/v1/partner/me" \
  -H "X-Auth-ID: {your_partner_id}" \
  -H "X-Auth-Token: {your_auth_token}" \
  -H "Accept: application/json"
import requests

response = requests.get(
    "https://api.vobiz.ai/api/v1/partner/me",
    headers={
        "X-Auth-ID": "{your_partner_id}",
        "X-Auth-Token": "{your_auth_token}",
        "Accept": "application/json",
    }
)

profile = response.json()
partner_id = profile["id"]  # Store this - needed for CDR/transaction queries
print(f"Partner: {profile['name']}, Balance: {profile['balance']} {profile['currency']}")

Response

{
  "id": "aabbccdd-1234-5678-90ab-cdef12345678",
  "account_id": 500000,
  "name": "John Doe",
  "slug": "acme-partner",
  "company": "Acme Corp",
  "auth_id": "PA_XXXXXXXX",
  "email": "admin@example.com",
  "phone": "+919876543210",
  "billing_model": "direct",
  "is_active": true,
  "is_verified": false,
  "max_accounts": 1000,
  "can_create_accounts": true,
  "can_create_pricing_tiers": true,
  "can_view_cdrs": true,
  "can_transfer_balance": true,
  "default_pricing_tier_id": "11223344-1234-5678-90ab-cdef12345678",
  "account_count": 23,
  "balance": "23906.83000",
  "created_at": "2026-01-19T18:39:14.529435Z",
  "updated_at": "2026-05-11T13:31:06.283235Z"
}

When to Use

  • Initial integration setup - Call this once when your integration starts. Capture the permanent id field and store it - it is required as a filter parameter in Transaction and CDR endpoints.
  • Balance checks before transfers - Check your current balance before calling the Transfer Balance endpoint to confirm sufficient funds.
  • Sync billing metadata - Sync GSTIN, TDS status, and account status to your internal billing system to ensure correct invoice generation.

Authorizations

X-Auth-ID
string
header
required

Your Vobiz account Auth ID

X-Auth-Token
string
header
required

Your Vobiz account Auth Token

Response

200 - application/json

Partner profile

id
string
required
account_id
integer
required
name
string
required
slug
string
required
company
string
required
auth_id
string
required
email
string
required
phone
string
required
billing_model
string
required
is_active
boolean
required
is_verified
boolean
required
max_accounts
integer
required
can_create_accounts
boolean
required
can_create_pricing_tiers
boolean
required
can_view_cdrs
boolean
required
can_transfer_balance
boolean
required
default_pricing_tier_id
string
required
account_count
integer
required
balance
string
required
created_at
string
required
updated_at
string
required