kustomer-client
    Preparing search index...

    Type Alias UpdateNoteByIdData

    type UpdateNoteByIdData = {
        body?: {
            attachments?: {
                _id: string;
                contentLength: number;
                contentType: string;
                name: string;
                sourceId?: string;
            }[];
            body: string;
            conversation: string;
            createdAt?: string;
            createdBy?: string;
            deleted?: boolean
            | null;
            externalId?: string | null;
            lang?: string | null;
            modifiedAt?: string;
            modifiedBy?: string | null;
            updatedAt?: string;
            userMentions?: { team?: string; user?: string }[];
        };
        path: { id: string };
        query?: { replace?: boolean };
        url: "/notes/{id}";
    }
    Index

    Properties

    Properties

    body?: {
        attachments?: {
            _id: string;
            contentLength: number;
            contentType: string;
            name: string;
            sourceId?: string;
        }[];
        body: string;
        conversation: string;
        createdAt?: string;
        createdBy?: string;
        deleted?: boolean
        | null;
        externalId?: string | null;
        lang?: string | null;
        modifiedAt?: string;
        modifiedBy?: string | null;
        updatedAt?: string;
        userMentions?: { team?: string; user?: string }[];
    }
    path: { id: string }

    Type declaration

    • id: string

      Unique note ID.

    query?: { replace?: boolean }

    Type declaration

    • Optionalreplace?: boolean

      Set to true to update the document. Otherwise, performs the same update as a PATCH request. Default value: false.

    url: "/notes/{id}"