@webitel/api-services
    Preparing search index...

    Generated by orval v8.5.3 🍺 Do not edit manually. Webitel API OpenAPI spec version: 24.04.0

    type MessageHistorySearchThreadMessagesHistoryParams = {
        cursorBefore?: boolean;
        cursorId?: string;
        fields?: string[];
        ids?: string[];
        senderIds?: string[];
        size?: number;
        types?: number[];
    }
    Index

    Properties

    cursorBefore?: boolean

    Pagination direction flag.

    true -> fetch newer messages (back before history) false -> fetch older messages (back to older history)

    cursorId?: string

    Cursor identifier. Must be a valid UUID referencing an existing message. Defines the starting point for pagination.

    fields?: string[]

    List of message fields to be returned. Used to reduce payload size.

    ids?: string[]

    Filter by specific message IDs.

    senderIds?: string[]

    Filter messages by sender user IDs.

    size?: number

    Maximum number of messages to return.

    types?: number[]

    Filter messages by message types.