kustomer-client
    Preparing search index...

    Type Alias GetConversationsByCustomerData

    type GetConversationsByCustomerData = {
        body?: never;
        path: { id: string };
        query?: { fromDate?: string; page?: number; pageSize?: number };
        url: "/customers/{id}/conversations";
    }
    Index

    Properties

    Properties

    body?: never
    path: { id: string }

    Type declaration

    • id: string

      Unique ID of the customer.

    query?: { fromDate?: string; page?: number; pageSize?: number }

    Type declaration

    • OptionalfromDate?: string

      date-time string in Internet Date/Time format (ISO 8601).

    • Optionalpage?: number

      Number of pages to return for results. Default value: 1.

    • OptionalpageSize?: number

      Number of results to return per page. Default value: 100.

    url: "/customers/{id}/conversations"