kustomer-client
    Preparing search index...

    Type Alias UpsertAttachmentData

    type UpsertAttachmentData = {
        body?: {
            contentLength?: number;
            contentType?: string;
            name?: string;
            redacted?: boolean;
        };
        path: { id: string };
        query?: never;
        url: "/attachments/{id}";
    }
    Index

    Properties

    Properties

    body?: {
        contentLength?: number;
        contentType?: string;
        name?: string;
        redacted?: boolean;
    }

    Schema for attachment update operations

    path: { id: string }

    Type declaration

    • id: string

      ID of attachment to update.

    query?: never
    url: "/attachments/{id}"