Skip to main content
GET
/
config
Get partner configuration
curl --request GET \
  --url https://api.vocobase.com/api/v2/config \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "name": "acme-corp",
    "display_name": "Acme Corporation",
    "agent_limit": 10,
    "current_agent_count": 3,
    "allowed_voices": [
      "voice-id-1",
      "voice-id-2"
    ],
    "allowed_languages": [
      "en",
      "hi",
      "es"
    ],
    "status": "active",
    "webhook": {
      "configured": true,
      "url": "https://example.com/webhook",
      "secret": "****"
    },
    "webhooks": [
      {
        "id": "12345678-abcd-1234-abcd-123456789012",
        "label": "prod",
        "url": "https://example.com/webhooks/vocobase",
        "enabled": true,
        "last_delivery_at": "2026-05-25T10:30:00.000Z",
        "last_delivery_status": 200,
        "created_at": "2026-05-25T10:00:00.000Z",
        "updated_at": "2026-05-25T10:30:00.000Z"
      }
    ],
    "allowed_telephony_providers": [
      "twilio",
      "exotel"
    ],
    "telephony": {
      "twilio": {
        "configured": true,
        "account_sid": "conf****ured",
        "from_number": "+14155551234"
      },
      "mcube": {
        "configured": false,
        "exe_number": null
      },
      "exotel": {
        "configured": true,
        "account_sid": "conf****ured",
        "subdomain": "api.exotel.com",
        "caller_id": "+919876543210",
        "applet_id": "app_****"
      },
      "plivo": {
        "configured": false,
        "auth_id": null,
        "from_number": null
      },
      "vobiz": {
        "configured": false,
        "auth_id": null,
        "from_number": null
      }
    },
    "created_at": "2025-01-15T10:30:00.000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.vocobase.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key in format: rg_live_xxxx. Pass as a Bearer token in the Authorization header.

Response

Partner configuration retrieved successfully.

success
boolean
data
object