interface GetTasksRequest {
    after?: string;
    limit?: number;
    name?: string;
    org?: string;
    orgID?: string;
    status?: string;
    type?: string;
    user?: string;
}

Properties

after?: string

A task ID. Only returns tasks created after the specified task.

limit?: number

The maximum number of tasks to return. Default is 100. The minimum is 1 and the maximum is 500.

To reduce the payload size, combine type=basic and limit (see Request samples). For more information about the basic response, see the type parameter.

name?: string

A task name. Only returns tasks with the specified name. Different tasks may have the same name.

org?: string

An organization name. Only returns tasks owned by the specified organization.

orgID?: string

An organization ID. Only returns tasks owned by the specified organization.

status?: string

A task status. Only returns tasks that have the specified status (active or inactive).

type?: string

A task type (basic or system). Default is system. Specifies the level of detail for tasks in the response. The default (system) response contains all the metadata properties for tasks. To reduce the response size, pass basic to omit some task properties (flux, createdAt, updatedAt).

user?: string

A user ID. Only returns tasks owned by the specified user.

MMNEPVFCICPMFPCPTTAAATR