> ## 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.

# Get Issue Types For Project

Returns issue types for a project.

<Note>
  External Documentation

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

## Parameters

<div className="integrations-table">
  | Parameter  | Description            |
  | ---------- | ---------------------- |
  | Project ID | The ID of the project. |
</div>

## Example Output

```json theme={"dark"}
[
	{
		"avatarId": 10002,
		"description": "A problem with the software.",
		"entityId": "9d7dd6f7-e8b6-4247-954b-7b2c9b2a5ba2",
		"hierarchyLevel": 0,
		"iconUrl": "https://your-domain.atlassian.net/secure/viewavatar?size=xsmall\u0026avatarId=10316\u0026avatarType=issuetype\",",
		"id": "1",
		"name": "Bug",
		"scope": {
			"project": {
				"id": "10000",
				"key": "KEY",
				"name": "Next Gen Project"
			},
			"type": "PROJECT"
		},
		"self": "https://your-domain.atlassian.net/rest/api/3/issueType/1",
		"subtask": false
	},
	{
		"avatarId": 1,
		"description": "A task that needs to be done.",
		"hierarchyLevel": 0,
		"iconUrl": "https://your-domain.atlassian.net/secure/viewavatar?size=xsmall\u0026avatarId=10299\u0026avatarType=issuetype\",",
		"id": "3",
		"name": "Task",
		"scope": {
			"project": {
				"id": "10000",
				"key": "KEY",
				"name": "Next Gen Project"
			},
			"type": "PROJECT"
		},
		"self": "https://your-domain.atlassian.net/rest/api/3/issueType/3",
		"subtask": false
	}
]
```

## Workflow Library Example

[Get Issue Types for Project with Jira and Send Results Via Email](https://library.blinkops.com/workflows/get-issue-types-for-project-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/get-issue-types-for-project-with-jira-and-send-results-via-email/canvas" />
</div>
