kustomer-client
    Preparing search index...

    Type Alias BulkBatchUpdateNotesData

    type BulkBatchUpdateNotesData = {
        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;
            id: string;
            lang?: string | null;
            modifiedAt?: string;
            modifiedBy?: string | null;
            updatedAt?: string;
            userMentions?: { team?: string; user?: string }[];
        }[];
        path?: never;
        query?: { ids?: string };
        url: "/notes/bulk";
    }
    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;
        id: string;
        lang?: string | null;
        modifiedAt?: string;
        modifiedBy?: string | null;
        updatedAt?: string;
        userMentions?: { team?: string; user?: string }[];
    }[]
    path?: never
    query?: { ids?: string }

    Type declaration

    • Optionalids?: string

      Comma-separated list of unique note IDs.

    url: "/notes/bulk"