kustomer-client
    Preparing search index...

    Type Alias CreateForwardByConversationData

    type CreateForwardByConversationData = {
        body?: {
            app?: "gmail" | "postmark";
            attachments?: {
                contentLength: number;
                contentType: string;
                id: string;
                name: string;
            }[];
            body?: string;
            channel: "email";
            customer?: string;
            from?: { email: string; name?: string };
            payload?: { [key: string]: unknown };
            replyTo?: string;
            sendAt?: string;
            status?: "draft" | "sent" | "failed";
            subject?: string;
            template?: string | null;
            to?: { email: string; name?: string }[];
        };
        path: { id: string };
        query?: never;
        url: "/conversations/{id}/forwards";
    }
    Index

    Properties

    Properties

    body?: {
        app?: "gmail" | "postmark";
        attachments?: {
            contentLength: number;
            contentType: string;
            id: string;
            name: string;
        }[];
        body?: string;
        channel: "email";
        customer?: string;
        from?: { email: string; name?: string };
        payload?: { [key: string]: unknown };
        replyTo?: string;
        sendAt?: string;
        status?: "draft" | "sent" | "failed";
        subject?: string;
        template?: string | null;
        to?: { email: string; name?: string }[];
    }
    path: { id: string }

    Type declaration

    • id: string

      Unique ID of the conversation.

    query?: never
    url: "/conversations/{id}/forwards"