interface GetIssueListParams {
    assigneeId?: number[];
    attachment?: boolean;
    categoryId?: number[];
    count?: PaginateCount;
    createdSince?: string;
    createdUntil?: string;
    createdUserId?: number[];
    dueDateSince?: string;
    dueDateUntil?: string;
    id?: number[];
    issueTypeId?: number[];
    keyword?: string;
    milestoneId?: number[];
    offset?: number;
    order?: Order;
    parentChild?: GetIssueListParamsSubtasking;
    parentIssueId?: number[];
    priorityId?: number[];
    projectId?: number[];
    resolutionId?: number[];
    sharedFile?: boolean;
    sort?: GetIssueListParamsSort;
    startDateSince?: string;
    startDateUntil?: string;
    statusId?: number[];
    updatedSince?: string;
    updatedUntil?: string;
    versionId?: number[];
    [key: `customField_${number}`]: number | string | number[];
    [key: `customField_${number}_min`]: number | DateString;
    [key: `customField_${number}_max`]: number | DateString;
}

Indexable

  • [key: `customField_${number}`]: number | string | number[]

    Custom Fields (Keyword Text, Value ID List)

  • [key: `customField_${number}_min`]: number | DateString

    Custom Fields (Minimum Numeric, Date from)

  • [key: `customField_${number}_max`]: number | DateString

    Custom Fields (Maximum Numeric, Date to)

Properties

assigneeId?: number[]

Assignee ID 担当者のID

attachment?: boolean

True to make include Issue with Attachment 添付ファイルを含む場合はtrue

categoryId?: number[]

Category ID カテゴリーのID

number of records to retrieve(1-100) default=20 取得上限(1-100) 指定が無い場合は20

createdSince?: string

Created since (yyyy-MM-dd) 登録日 (yyyy-MM-dd)

createdUntil?: string

Created until (yyyy-MM-dd) 登録日 (yyyy-MM-dd)

createdUserId?: number[]

Created User ID 登録者のID

dueDateSince?: string

Due Date since (yyyy-MM-dd) 期限日 (yyyy-MM-dd)

dueDateUntil?: string

Due Date until (yyyy-MM-dd) 期限日 (yyyy-MM-dd)

id?: number[]

Issue ID 課題のID

issueTypeId?: number[]

Issue Type ID 種別のID

keyword?: string

Keyword 検索キーワード

milestoneId?: number[]

Milestone ID マイルストーンのID

offset?: number

offset

order?: Order

Order of the sort “asc” or “desc” default=“desc” ”asc”または”desc” 指定が無い場合は”desc”

Subtasking 親子課題の条件

parentIssueId?: number[]

Parent Issue ID 親課題のID

priorityId?: number[]

Priority ID 優先度のID

projectId?: number[]

Project ID プロジェクトのID

resolutionId?: number[]

Resolution ID 完了理由のID

sharedFile?: boolean

True to make include Issue with File 共有ファイルを含む場合はtrue

What to sort results by 課題一覧のソートに使用する属性名

startDateSince?: string

Start Date since (yyyy-MM-dd) 開始日 (yyyy-MM-dd)

startDateUntil?: string

Start Date until (yyyy-MM-dd) 開始日 (yyyy-MM-dd)

statusId?: number[]

Status ID 状態のID

updatedSince?: string

Updated since (yyyy-MM-dd) 更新日 (yyyy-MM-dd)

updatedUntil?: string

Updated until (yyyy-MM-dd) 更新日 (yyyy-MM-dd)

versionId?: number[]

Version ID 発生バージョンのID