Returns the authenticated partner’s profile and balance.
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"
}← Partner API Reference Retrieve your partner identity, billing configuration, GST status, and current balance. The profile endpoint is the authoritative source for your permanent partnerDocumentation Index
Fetch the complete documentation index at: https://docs.vobiz.ai/llms.txt
Use this file to discover all available pages before exploring further.
id - required as a filter parameter in Transaction and CDR queries.
X-Auth-ID and X-Auth-Token headers. See Authentication for details.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']}")
{
"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"
}
id field and store it - it is required as a filter parameter in Transaction and CDR endpoints.Your Vobiz account Auth ID
Your Vobiz account Auth Token
Partner profile
Was this page helpful?
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"
}