Interface ListOperationsOptions

Options for listing the async operations (such as file uploads and deletes) performed on an assistant.

interface ListOperationsOptions {
    limit?: number;
    operationType?: string;
    paginationToken?: string;
    status?: string;
}

Properties

limit?: number

The maximum number of operations to return.

operationType?: string

Optionally filter operations by type, such as the kind of action the operation represents (e.g. uploading or deleting a file).

paginationToken?: string

The token to paginate through the list of operations. Use the paginationToken returned in a previous response to fetch the next page.

status?: string

Optionally filter operations by status (e.g. Processing, Completed, or Failed).