kustomer-client
    Preparing search index...

    Type Alias BulkBatchUpdateConversationsData

    type BulkBatchUpdateConversationsData = {
        body?: (
            | {
                assignedTeams?: string[];
                assignedUsers?: string[];
                custom?: { [key: string]: never };
                defaultLang?: string | null;
                deleted?: boolean | null;
                direction?: "in" | "out";
                ended?: boolean;
                endedAt?: string;
                endedBy?: string;
                endedByType?: "user" | "customer";
                endedReason?: string;
                externalId?: string | null;
                id: string;
                locked?: boolean;
                name?: string | null;
                priority?: number;
                queue?: unknown & { external?: "amazon-connect"; id?: string | null };
                replyChannel?: string | null;
                rev?: number;
                satisfaction?: number | null;
                sentiment?: { confidence: number; polarity: -1 | 0 | 1 };
                snooze?: { status: "scheduled" | "canceled" | "elapsed"; time?: string };
                status?: "open" | "snoozed" | "done";
                subStatus?: string;
                suggestedTags?: { confidence: number; tag: string }[];
                tags?: string[];
            }
            | { customer?: string; id: string }
        )[];
        path?: never;
        query?: { ids?: string };
        url: "/conversations/bulk";
    }
    Index

    Properties

    Properties

    body?: (
        | {
            assignedTeams?: string[];
            assignedUsers?: string[];
            custom?: { [key: string]: never };
            defaultLang?: string | null;
            deleted?: boolean | null;
            direction?: "in" | "out";
            ended?: boolean;
            endedAt?: string;
            endedBy?: string;
            endedByType?: "user" | "customer";
            endedReason?: string;
            externalId?: string | null;
            id: string;
            locked?: boolean;
            name?: string | null;
            priority?: number;
            queue?: unknown & { external?: "amazon-connect"; id?: string | null };
            replyChannel?: string | null;
            rev?: number;
            satisfaction?: number | null;
            sentiment?: { confidence: number; polarity: -1 | 0 | 1 };
            snooze?: { status: "scheduled" | "canceled" | "elapsed"; time?: string };
            status?: "open" | "snoozed" | "done";
            subStatus?: string;
            suggestedTags?: { confidence: number; tag: string }[];
            tags?: string[];
        }
        | { customer?: string; id: string }
    )[]
    path?: never
    query?: { ids?: string }

    Type declaration

    • Optionalids?: string

      Comma-separated list of unique conversation IDs.

    url: "/conversations/bulk"