Returns a paginated list of all components in a project. See the Get project components resource if you want to get a full list of versions without pagination.

This operation can be accessed anonymously.

Permissions required: Browse Projects project permission for the project.

External Documentation

To learn more, visit the Jira documentation.

Basic Parameters

ParameterDescription
Order ByOrder the results by a field:

* description Sorts by the component description.
* issueCount Sorts by the count of issues associated with the component.
* lead Sorts by the user key of the component’s project lead.
* name Sorts by component name.
Project ID Or KeyThe project ID or project key (case sensitive).
QueryFilter the results using a literal string. Components with a matching name or description are returned (case insensitive).

Advanced Parameters

ParameterDescription
LimitThe maximum number of items to return per page.
OffsetThe index of the first item to return in a page of results (page offset).

Example Output

{
	"maxResults": 74,
	"startAt": 1,
	"total": 0,
	"isLast": true,
	"values": [
		{
			"componentBean": {
				"self": "<string>",
				"id": "<string>",
				"name": "<string>",
				"description": "<string>",
				"assigneeType": "<string>",
				"realAssigneeType": "<string>",
				"isAssigneeTypeValid": false,
				"project": "<string>",
				"projectId": 5397
			},
			"issueCount": 4,
			"realAssigneeType": "<string>",
			"isAssigneeTypeValid": false,
			"description": "<string>",
			"projectId": 11589,
			"project": "<string>",
			"assigneeType": "<string>",
			"self": "<string>",
			"name": "<string>",
			"id": "<string>"
		},
		{
			"componentBean": {
				"self": "<string>",
				"id": "<string>",
				"name": "<string>",
				"description": "<string>",
				"assigneeType": "<string>",
				"realAssigneeType": "<string>",
				"isAssigneeTypeValid": false,
				"project": "<string>",
				"projectId": 7835
			},
			"issueCount": 1,
			"realAssigneeType": "<string>",
			"isAssigneeTypeValid": false,
			"description": "<string>",
			"projectId": 10517,
			"project": "<string>",
			"assigneeType": "<string>",
			"self": "<string>",
			"name": "<string>",
			"id": "<string>"
		}
	]
}

Workflow Library Example

List Project Components with Jira and Send Results Via Email

Preview this Workflow on desktop