> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Project Components

Returns a [paginated](https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/#pagination) list of all components in a project. See the [Get project components](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-components/#api-rest-api-3-project-projectidorkey-components-get) resource if you want to get a full list of versions without pagination.

This operation can be accessed anonymously.

**[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/#permissions) required:** *Browse Projects* [project permission](https://confluence.atlassian.com/x/yodKLg) for the project.

<Note>
  External Documentation

  To learn more, visit the [Jira documentation](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-components/#api-rest-api-3-project-projectidorkey-components-get).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter         | Description                                                                                                                                                                                                                                                                                                       |
  | ----------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Order By          | [Order](#ordering) the results by a field:<br /><br /> \*  `description` Sorts by the component description.<br /> \*  `issueCount` Sorts by the count of issues associated with the component.<br /> \*  `lead` Sorts by the user key of the component's project lead.<br /> \*  `name` Sorts by component name. |
  | Project ID Or Key | The project ID or project key (case sensitive).                                                                                                                                                                                                                                                                   |
  | Query             | Filter the results using a literal string. Components with a matching `name` or `description` are returned (case insensitive).                                                                                                                                                                                    |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                                               |
  | --------- | ------------------------------------------------------------------------- |
  | Limit     | The maximum number of items to return per page.                           |
  | Offset    | The index of the first item to return in a page of results (page offset). |
</div>

## Example Output

```json theme={"dark"}
{
	"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](https://library.blinkops.com/workflows/list-project-components-with-jira-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-project-components-with-jira-and-send-results-via-email/canvas" />
</div>
