Returns the current partner configuration including webhook status, telephony setup, agent limits, and allowed voices/languages. Sensitive values are masked.
cURL
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" } }
API key in format: rg_live_xxxx. Pass as a Bearer token in the Authorization header.
rg_live_xxxx
Partner configuration retrieved successfully.
Show child attributes