Type Alias DiSearchTaskRunHistoryReq

Request parameters for searching task run history, including filter criteria and pagination options.

type DiSearchTaskRunHistoryReq = {
    filters?: TaskRunSearchFilter[];
    lastId?: string;
    limit?: number;
}
Index

Field filters to apply to the search.

lastId?: string

Cursor for paging. Pass the runId of the last item from the previous response to fetch the next page; omit on the first request.

limit?: number

Maximum number of runs to return.