Get all Dot Phrases
GET/dot-phrases
Retrieve a list of user's Dot Phrases.
Requestโ
Query Parameters
The cursor you received in the next_cursor field to fetch the next page.
Possible values: >= 1
and <= 100
The amount of objects to retrieve, between 1 and 100.
Possible values: [ASC
, DESC
]
Default value: ASC
This flag is used to get results sorted in ascending or descending order.
Responsesโ
- 200
A paginated list of Dot Phrases.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
data object[]required
Unique identifier of the Dot Phrase.
A user-friendly title for the Dot Phrase. Does not impact the matching logic.
The text which, if present in the transcript, will prompt the suggestion of this Dot Phrase.
If true, whenever this dot phrase is suggested, the replacement text will be automatically updated based on the encounter discussion.
The replacement text for this Dot Phrase. If the Dot Phrase's trigger is detected, this text will be suggested in the note generation's response.
An opaque cursor to fetch the next page of the collection.
{
"data": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"title": "Normal physical exam",
"trigger": "Your physical exam is normal",
"content_auto_update_enabled": false,
"replacement": "- Heart Examination: Normal, with regular rate and rhythm, no murmurs. - Lung Assessment: Normal breath sounds, no wheezes, crackles, or rhonchi. - Abdominal Evaluation: Normal, no tenderness, masses, or hepatosplenomegaly."
}
],
"has_more": true,
"next_cursor": "string"
}