v64

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-01176310978.7 KB
bridge_phrases

Get Bridge Phrases

Fetch a given bridge phrases config.

get/api/v1/bridge_phrases/{bridge_phrases_id}

Path parameters

bridge_phrases_idinteger required

Response

Successful Response

namestring required

The name of the bridge phrases config.

descriptionstring nullable

Description of the bridge phrases config.

is_defaultboolean

Whether this config is currently marked as the default for its suborg.

idinteger required

The ID of the bridge phrases config to update.

edit_commentsstring nullable

Comments for the most recent edit.

updated_atstring date-time required

Timestamp of the last update.

last_updated_bystring required

Email of the user who last updated this config.

Example response

{
  "name": "Default Bridge Phrases",
  "description": "Standard hold phrases for inbound line.",
  "config": {
    "phrases": {
      "messages": [
        "One moment, please.",
        "Let me check on that for you."
      ],
      "localized": {
        "es-US": {
          "messages": [
            "Un momento, por favor."
          ]
        },
        "fr-FR": {
          "messages": [
            "Un instant, je vous en prie."
          ]
        }
      }
    },
    "tools": [
      {
        "phrases": {
          "messages": [
            "One moment, please.",
            "Let me check on that for you."
          ],
          "localized": {
            "es-US": {
              "messages": [
                "Un momento, por favor."
              ]
            },
            "fr-FR": {
              "messages": [
                "Un instant, je vous en prie."
              ]
            }
          }
        }
      }
    ],
    "randomize_bridge_phrases": true
  },
  "id": 1,
  "edit_comments": "Added Spanish overrides for the transfer tool.",
  "agents_info": [
    {
      "id": 1,
      "name": "Test Agent"
    }
  ],
  "updated_at": "2026-07-02T00:00:00Z",
  "last_updated_by": "user@mail.com"
}