Glossary

Manage project glossary terms (from → to replacements) applied during transcription and via POST /v1/transcriptions/…/glossary/apply. Authenticate with a project API key (glossary:* permissions) or a user session with X-Workspace-Id and X-Project-Id. Workspace API keys cannot access these routes.

The Glossary entry object

entryIdstring
Stable entry identifier.
fromstring
Source phrase (case-insensitive match).
tostring
Replacement text.
createdAttimestamp
Creation time.
updatedAttimestamp
Last update time.

List glossary entries

GET/v1/glossary
Lists all glossary entries for the active project.

Requires permission

glossary:list

Create a glossary entry

POST/v1/glossary
Adds a new from → to rule.

Requires permission

glossary:create

Parameters

fromstring
Source phrase.
tostring
Replacement text.

Update a glossary entry

PATCH/v1/glossary/{entryId}
Updates the from and/or to text.

Requires permission

glossary:update

Delete a glossary entry

DELETE/v1/glossary/{entryId}
Permanently removes a glossary entry.

Requires permission

glossary:delete