teamId * | string | UUID of the team the issue belongs to. Required. Use teams_list to resolve a team key such as ‘ENG’ to its UUID. |
title * | string | The issue title. |
description | string | The issue description in markdown format. |
assigneeId | string | The identifier of the user to assign the issue to. Use users_list to resolve a name. |
priority | integer | The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Medium, 4 = Low. |
stateId | string | The team state of the issue. Use workflow_states_list to resolve a state name such as ‘In Progress’. Omit to use the team’s default. |
labelIds | string[] | The identifiers of the issue labels associated with this ticket. |
projectId | string | The project associated with the issue. |
projectMilestoneId | string | The project milestone associated with the issue. |
cycleId | string | The cycle associated with the issue. |
parentId | string | The identifier of the parent issue, to create this as a sub-issue. Can be a UUID or issue identifier (e.g., ‘LIN-123’). |
subscriberIds | string[] | The identifiers of the users subscribing to this ticket. |
estimate | integer | The estimated complexity of the issue. |
dueDate | string | The date at which the issue is due, as YYYY-MM-DD. |
sortOrder | number | The position of the issue related to other issues. |
prioritySortOrder | number | The position of the issue related to other issues, when ordered by priority. |
subIssueSortOrder | number | The position of the issue in parent’s sub-issue list. |
preserveSortOrderOnCreate | boolean | Whether the passed sort order should be preserved. |
delegateId | string | The identifier of the agent user to delegate the issue to. |
slaType | SlaDayCountType | The SLA day count type for the issue. Whether SLA should be business days only or calendar days (default). |
templateId | string | The identifier of a template the issue should be created from. If other values are provided in the input, they will override template values. |
lastAppliedTemplateId | string | The ID of the last template applied to the issue. |
useDefaultTemplate | boolean | Whether to use the default template for the team. When set to true, the default template of this team based on user’s membership will be applied. |
sourceCommentId | string | The comment the issue is created from. |
referenceCommentId | string | The comment the issue is referencing. |
releaseIds | string[] | The identifiers of the releases to associate with this issue. |
createdAt | string | The time at which the issue was created (e.g. if importing from another system). Must be a time in the past. If none is provided, the backend will generate the time as now. |
completedAt | string | The time at which the issue was completed (e.g. if importing from another system). Must be a time in the past and after createdAt. Cannot be provided with an incompatible workflow state. |
id | string | The identifier in UUID v4 format. If none is provided, the backend will generate one. |