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": "****"
    },
    "telephony": {
      "twilio": {
        "configured": true,
        "account_sid": "conf****ured",
        "from_number": "+14155551234"
      },
      "mcube": {
        "configured": false,
        "exe_number": null
      }
    },
    "created_at": "2025-01-15T10:30:00.000Z"
  }
}

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