Get Bridge Phrases
Fetch a given bridge phrases config.
/api/v1/bridge_phrases/{bridge_phrases_id}Authentication
Syllable-API-KeyrequiredSend Syllable-API-Key in the header.
Need a credential? Create or manage an API token in the Syllable Console.
Parameters
Path parameters
bridge_phrases_id
integer
path
required
Responses
200Successful Response
application/json
response
BridgePhrasesResponse
required
9 fields
namestringrequiredThe name of the bridge phrases config.
descriptionstring | nulloptionalDescription of the bridge phrases config.
configBridgePhrasesConfigPayloadoptionalDefault phrases plus per-tool overrides.
4 fields
phraseslib__database__dao__organization__bridge_phrases_dao__BridgePhraseMessagesoptionalDefault bridge phrases (used when no tool-specific entry matches).
2 fields
messagesstring[]optionalOrdered bridge phrases for this scope.
Item schema
itemsstringrequiredlocalizedobjectoptionalPer-language overrides keyed by BCP-47 tag (e.g. "es-US").
1 field
{key}LocalizedBridgePhrasesoptionalPer-language bridge phrase overrides (no further nesting).
1 field
messagesstring[]optionalBridge phrases for this language.
Item schema
itemsstringrequiredtoolsToolBridgePhraseConfig[]optionalPer-tool phrase overrides.
Item schema
itemsToolBridgePhraseConfigrequiredPer-tool bridge phrase override entry.
2 fields
tool_namestringrequiredName of the tool these phrases override.
phraseslib__database__dao__organization__bridge_phrases_dao__BridgePhraseMessagesreference defined abovePhrase messages for this tool.
smart_turn_timeout_secondsnumber | nulloptionalSeconds of caller silence before injecting the first bridge phrase. Defaults to 2.75s when omitted on write.
2.75Minimum 0.25Maximum 30randomize_bridge_phrasesbooleanoptionalWhether to randomize the order of bridge phrases. When true, the order of the bridge phrases is randomized for each call.
falseis_defaultbooleanoptionalWhether this config is currently marked as the default for its suborg.
falseidintegerrequiredThe ID of the bridge phrases config to update.
edit_commentsstring | nulloptionalComments for the most recent edit.
agents_infoBridgePhrasesAgentInfo[] | nulloptionalIDs and names of the agents linked to this bridge phrases config.
Item schema
itemsBridgePhrasesAgentInforequiredInformation about an agent linked to a bridge phrases config.
2 fields
idintegerrequiredThe ID of the agent.
namestringrequiredThe name of the agent.
updated_atstring (date-time)requiredTimestamp of the last update.
last_updated_bystringrequiredEmail of the user who last updated this config.
Response example
{
"name": "string",
"description": "string",
"config": {
"phrases": {
"messages": [
"string"
],
"localized": {
"es-US": {
"messages": [
"Un momento, por favor."
]
},
"fr-FR": {
"messages": [
"Un instant, je vous en prie."
]
}
}
},
"tools": [
{
"tool_name": "string",
"phrases": null
}
],
"smart_turn_timeout_seconds": 2.75,
"randomize_bridge_phrases": false
},
"is_default": false,
"id": 0,
"edit_comments": "string",
"agents_info": "string",
"updated_at": "string",
"last_updated_by": "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"
}
]
}
