GET
/
bots
/
twilio-config
curl --request GET \
  --url https://api.daily.co/v1/bots/twilio-config \
  --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.

Response

200
application/json
Successfully retrieved configurations

The response is of type object[].