v47

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-181,0851,7264.5 MB
Pronunciation Dictionaries

Update a pronunciation dictionary

Update the name and/or items of an existing pronunciation dictionary. Uses optimistic locking — if the dictionary was modified concurrently, the request returns 409 Conflict.

patch/pronunciation_dicts/{id}

Path parameters

idstring uuid required
Example:c215a3e1-be41-4701-97e8-1d3c22f9a5b7

The UUID of the pronunciation dictionary.

Request body

namestring

Updated dictionary name.

Example request

{
  "name": "Updated Brand Names",
  "items": [
    {
      "text": "Telnyx",
      "type": "alias",
      "alias": "tel-nicks"
    }
  ]
}

Response

Pronunciation dictionary updated successfully.

Example response

{
  "data": {
    "record_type": "pronunciation_dict",
    "id": "c215a3e1-be41-4701-97e8-1d3c22f9a5b7",
    "name": "Brand Names",
    "items": [
      {
        "text": "Telnyx",
        "type": "alias",
        "alias": "tel-nicks"
      }
    ],
    "version": 1,
    "created_at": "2026-03-25T12:00:00.000Z",
    "updated_at": "2026-03-25T12:00:00.000Z"
  }
}