kustomer-client
    Preparing search index...

    Type Alias BulkBatchUpdateMessagesData

    type BulkBatchUpdateMessagesData = {
        body?: {
            attachments?: {
                _id: string;
                contentLength: number;
                contentType: string;
                name: string;
                sourceId?: string;
            }[];
            conversation?: string;
            createdAt?: string;
            createdBy?: string;
            custom?: { [key: string]: never };
            error?: {
                code?: string;
                detail?: string;
                links?: { [key: string]: unknown };
                meta?: { [key: string]: unknown };
                source?: { [key: string]: unknown };
                status?: number;
                title?: string;
            };
            errorAt?: string;
            externalId?: string
            | null;
            id: string;
            lang?: string | null;
            meta?: { [key: string]: unknown };
            modifiedAt?: string;
            modifiedBy?: string | null;
            preview?: string | null;
            related?: string;
            sentAt?: string | null;
            sentiment?: { confidence: number; polarity: -1 | 0 | 1 };
            size?: number;
            status?: "sent" | "received" | "error";
            subject?: string | null;
            updatedAt?: string;
        }[];
        path?: never;
        query?: { ids?: string };
        url: "/messages/bulk";
    }
    Index

    Properties

    Properties

    body?: {
        attachments?: {
            _id: string;
            contentLength: number;
            contentType: string;
            name: string;
            sourceId?: string;
        }[];
        conversation?: string;
        createdAt?: string;
        createdBy?: string;
        custom?: { [key: string]: never };
        error?: {
            code?: string;
            detail?: string;
            links?: { [key: string]: unknown };
            meta?: { [key: string]: unknown };
            source?: { [key: string]: unknown };
            status?: number;
            title?: string;
        };
        errorAt?: string;
        externalId?: string
        | null;
        id: string;
        lang?: string | null;
        meta?: { [key: string]: unknown };
        modifiedAt?: string;
        modifiedBy?: string | null;
        preview?: string | null;
        related?: string;
        sentAt?: string | null;
        sentiment?: { confidence: number; polarity: -1 | 0 | 1 };
        size?: number;
        status?: "sent" | "received" | "error";
        subject?: string | null;
        updatedAt?: string;
    }[]
    path?: never
    query?: { ids?: string }

    Type declaration

    • Optionalids?: string

      Comma-separated list of unique message IDs.

    url: "/messages/bulk"