Sinch Node.js SDK - v1.5.0
    Preparing search index...

    Interface ListConversationsRequestData

    interface ListConversationsRequestData {
        active_channel?: string;
        app_id?: string;
        contact_id?: string;
        only_active?: boolean;
        page_size?: number;
        page_token?: string;
    }
    Index

    Properties

    active_channel?: string

    Only fetch conversations from the active_channel

    app_id?: string

    The ID of the app involved in the conversations. Note that either app_id or contact_id is required in order for the operation to function correctly.

    contact_id?: string

    Resource name (ID) of the contact. Note that either app_id or contact_id is required in order for the operation to function correctly.

    only_active?: boolean

    True if only active conversations should be listed.

    page_size?: number

    The maximum number of conversations to fetch. Defaults to 10 and the maximum is 20.

    page_token?: string

    Next page token previously returned if any.