Get Bridge Phrases Config
Get the bridge phrases configuration.
/api/v1/conversation-config/bridgesAuthentication
Syllable-API-KeyrequiredSend Syllable-API-Key in the header.
Need a credential? Create or manage an API token in the Syllable Console.
Parameters
Query parameters
agent_id
integer | null
query
optional
Agent ID to fetch config for
tool_name
string | null
query
optional
Tool name to fetch config for
Responses
200Successful Response
application/json
response
BridgePhrasesConfig
required
7 fields
messagesstring[]optionalUnified ordered bridge phrases. If empty, legacy fields are used.
Item schema
itemsstringrequiredrandomize_messagesbooleanoptionalWhen true, unified messages are played in randomized no-repeat cycles. Ignored when unified messages are disabled.
falsefirst_slow_messagesstring[]optionalMessages to say when the agent is first delayed.
Item schema
itemsstringrequiredvery_slow_messagesstring[]optionalMessages to say when the agent is significantly delayed.
Item schema
itemsstringrequiredtool_responsesstring[]optionalMessages to say when a tool call is in progress.
Item schema
itemsstringrequiredlocalizedobjectoptionalPer-language overrides keyed by BCP-47 tag (e.g. "es-US").
1 field
{key}schemas__cortex__v1__bridge_phrases__BridgePhraseMessagesoptionalBridge phrase message lists for a single language.
5 fields
messagesstring[]optionalUnified ordered bridge phrases. If empty, legacy fields are used.
Item schema
itemsstringrequiredrandomize_messagesbooleanoptionalWhen true, unified messages are played in randomized no-repeat cycles. Ignored when unified messages are disabled.
falsefirst_slow_messagesstring[]optionalMessages to say when the agent is first delayed.
Item schema
itemsstringrequiredvery_slow_messagesstring[]optionalMessages to say when the agent is significantly delayed.
Item schema
itemsstringrequiredtool_responsesstring[]optionalMessages to say when a tool call is in progress.
Item schema
itemsstringrequiredsmart_turn_timeout_secondsnumber | nulloptionalSeconds of caller silence before injecting the first bridge phrase. Subsequent sleep intervals are 2x, 3x, 4x this base. When unset, the service-wide default applies.
0.25Maximum 30Response example
{
"messages": [
"string"
],
"randomize_messages": false,
"first_slow_messages": [
"string"
],
"very_slow_messages": [
"string"
],
"tool_responses": [
"string"
],
"localized": "string",
"smart_turn_timeout_seconds": "string"
}422Validation Error
application/json
response
HTTPValidationError
required
1 field
detailValidationError[]optionalItem schema
itemsValidationErrorrequired3 fields
locstring | integer[]requiredItem schema
itemsstring | integerrequired2 options
Option 1stringrequiredOption 2integerrequiredmsgstringrequiredtypestringrequiredResponse example
{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}
