interface GetTasksIDRunsRequest {
    after?: string;
    afterTime?: string;
    beforeTime?: string;
    limit?: number;
    taskID: string;
}

Properties

after?: string

A task run ID. Only returns runs created after this run.

afterTime?: string

A timestamp (RFC3339 date/time format). Only returns runs scheduled after this time.

beforeTime?: string

A timestamp (RFC3339 date/time format). Only returns runs scheduled before this time.

limit?: number

Limits the number of task runs returned. Default is 100.

taskID: string

The ID of the task to get runs for. Only returns runs for this task.

MMNEPVFCICPMFPCPTTAAATR