Skip to main content

Get user note

GET 

/:customer_id/users/:uid/notes/:note_id

Get single user note by note_id

Request

Path Parameters

    customer_id Customer Idrequired

    Id of the tenant

    uid uuidrequired

    Id of the user

    note_id uuid4required

    Id of the note

Responses

Successful response

Schema
    id uuid4required

    The primary key for the note, a unique identifier.

    customer_id Customer Idrequired

    The FK linking the note to a specific tenant

    uid uuid4required

    The FK linking the note to a specific user.

    start_date date-timerequired

    The timestamp indicating when the note's started, with timezone information.

    end_date date-timerequired

    The timestamp indicating when the note's ended, with timezone information.

    text Textrequired

    Text field containing text related to the note.

    triggers_id string[]required

    A list of trigger identifiers that triggered this note.

    cough_count Cough Countnullable

    The total number of coughs observed during the note's time frame.

    cough_rate Cough Ratenullable

    The rate of coughs observed, typically calculated as coughs per minute.

    created_at date-time

    The timestamp when the note was created, set automatically.

    updated_at date-time

    The timestamp when the note was last updated, set automatically.

    utc_offset Utc Offsetrequired

    Note's timezone offset in minutes

Loading...