Skip to main content
⚠️ Archived Version: This documentation is for an outdated version. Please visit the latest version.

Get all Dot Phrases

GET 

/dot_phrases

Retrieve a list of user's Dot Phrases.

Request

Query Parameters

    cursor string

    The cursor you received in the next_cursor field to fetch the next page.

    limit integer

    Possible values: >= 1 and <= 100

    The amount of objects to retrieve, between 1 and 100.

    order string

    Possible values: [ASC, DESC]

    Default value: ASC

    This flag is used to get results sorted in ascending or descending order.

Responses

A paginated list of Dot Phrases.

Schema
    data object[]required
  • Array [
  • id uuidrequired

    Unique identifier of the Dot Phrase.

    title stringrequired

    A user-friendly title for the Dot Phrase. Does not impact the matching logic.

    trigger stringrequired

    The text which, if present in the transcript, will prompt the suggestion of this Dot Phrase.

    content_auto_update_enabled booleanrequired

    If true, whenever this dot phrase is suggested, the replacement text will be automatically updated based on the encounter discussion.

    replacement stringrequired

    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.

  • ]
  • has_more booleanrequired
    next_cursor next_cursor (string)nullable

    An opaque cursor to fetch the next page of the collection.

Loading...