GET
/
bots
/
twilio-config
/
{id}
curl --request GET \
  --url https://api.daily.co/v1/bots/twilio-config/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "wssUrl": "<string>",
  "domain": "<string>",
  "twiml": "<string>",
  "botConfig": {
    "config": [
      {
        "service": "vad",
        "options": [
          {
            "name": "<string>",
            "value": "<string>"
          }
        ]
      }
    ],
    "services": {
      "llm": "<string>",
      "stt": "<string>",
      "tts": "<string>"
    },
    "api_keys": {},
    "bot_profile": "<string>",
    "max_duration": 43230,
    "service_options": {}
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The ID of the Twilio configuration to retrieve

Response

200
application/json
Successfully retrieved configuration

The response is of type object.