Issue Work Items
Resource that provides access to work items.
Resource | /api/workItems |
Returned entity | IssueWorkItem. For the description of the entity attributes, see Supported Fields section. |
Supported methods |
IssueWorkItem attributes
Represents a work item in an issue.
Extends BaseWorkItem
This table describes attributes of the IssueWorkItem
entity.
To receive an attribute in the response from the server, specify it explicitly in the
fields
request parameter.To update an attribute, provide it in the body of a POST request.
Field | Type | Description |
---|---|---|
id | String | The ID of the issue work item. |
author | User | The user to whom the work is attributed in the work item. |
creator | User | The user who added the work item to the issue. |
text | String | The work item description. |
textPreview | String | Parsed preview of the description. |
type | WorkItemType | The work item type. |
created | Long | The date when the work item was created. |
updated | Long | The date when the work item was last updated. |
duration | DurationValue | The duration of the work item. |
date | Long | The date and time that is assigned to the work item. Stored as a Unix timestamp in UTC. The time part is set to midnight for the current date. |
issue | Issue | Stores attributes of the issue to which the work item is attached. |
attributes | Array of WorkItemAttributes | The list of attributes of the work item. |
Read a List of IssueWorkItems
Get all work items that belong to issues that match a search query. If the query is not provided, all work items from all issues are returned.
Request syntax
Request parameters
Parameter | Type | Description |
---|---|---|
fields | String | A list of IssueWorkItem attributes that should be returned in the response. If no field is specified, only the |
$skip | Int | Optional. Lets you set a number of returned entities to skip before returning the first one. |
$top | Int | Optional. Lets you specify the maximum number of entries that are returned in the response. |
query | String | Issues search query. Read more about search syntax here: Search Query Reference |
startDate | Date | The start date of the interval for work items date. |
endDate | Date | The end date of the interval for work items date. |
start | Integer | The start timestamp of the interval for work items date. |
end | Integer | The end timestamp of the interval for work items date. |
createdStart | Integer | The start timestamp of the interval for work items created date. |
createdEnd | Integer | The end timestamp of the interval for work items created date. |
updatedStart | Integer | The start timestamp of the interval for work items updated date. |
updatedEnd | Integer | The end timestamp of the interval for work items updated date. |
author | String | Lets you filter work items by their author. Possible values:
Include a separate |
creator | String | Lets you filter work items by their creator. Possible values:
Include a separate |