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

    Interface ListRecentConversationsRequestData

    interface ListRecentConversationsRequestData {
        app_id: string;
        only_active?: boolean;
        order?: string;
        page_size?: number;
        page_token?: string;
    }
    Index

    Properties

    app_id: string

    The application ID

    only_active?: boolean

    True if only active conversations should be listed. Default is false.

    order?: string

    Whether to sort conversations by newest message first or oldest. Default is DESC (newest first)

    page_size?: number

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

    page_token?: string

    Next page token previously returned if any. When specifying this token, make sure to use the same values for the other parameters from the request that originated the token, otherwise the paged results may be inconsistent.