interface SearchTasks {
    assignee?: string;
    completedUser?: string;
    completedateFrom?: number;
    completedateTo?: number;
    createdateFrom?: number;
    createdateTo?: number;
    creator?: string;
    duedateFrom?: number;
    duedateTo?: number;
    limit?: number;
    pageId?: string;
    spaceKey?: string;
    start?: number;
    status?: string;
}

Properties

assignee?: string

Account ID of a user to whom a task is assigned. Multiple users can be specified.

completedUser?: string

Account ID of a user who completed a task. Multiple users can be specified.

completedateFrom?: number

Start of date range based on complete dates (inclusive).

completedateTo?: number

End of date range based on complete dates (inclusive).

createdateFrom?: number

Start of date range based on create dates (inclusive).

createdateTo?: number

End of date range based on create dates (inclusive).

creator?: string

Account ID of a user to who created a task. Multiple users can be specified.

duedateFrom?: number

Start of date range based on due dates (inclusive).

duedateTo?: number

End of date range based on due dates (inclusive).

limit?: number

The number of results to be returned.

pageId?: string

The page id of a page. Multiple page ids can be specified.

spaceKey?: string

The space key of a space. Multiple space keys can be specified.

start?: number

The starting offset for the results.

status?: string

The status of the task. (checked/unchecked)

Generated using TypeDoc v0.25.12