# List Jira integrations

Returns a list of all your Jira integrations. This endpoint [supports pagination](https://betterstack.com/docs/uptime/api/pagination/).

[endpoint]
base_url = "https://uptime.betterstack.com"
path = "/api/v2/jira-integrations"
method = "GET"

[[query_param]]
name = "team_name"
description = "Filter Jira integrations belonging to a specified team when using [global API token](https://betterstack.com/docs/uptime/api/getting-started-with-uptime-api/#get-a-global-api-token)."
required = false
type = "string"

[[header]]
name = "Authorization"
description = "Bearer `$TOKEN`"
required = true
type = "string"
[/endpoint]

[responses]
[[response]]
status = 200
description = '''Returns list of existing Jira integrations'''
body = '''{
  "data": [
    {
      "id": "13760",
      "type": "jira_integration",
      "attributes": {
        "name": "Test",
        "automatic_issue_creation": false,
        "jira_project_key": "TP",
        "jira_issue_type_id": "10006",
        "jira_fields": {
          "labels": [
            {
              "label": "example-label",
              "value": "example-label"
            }
          ],
          "assignee": {
            "label": "John Doe",
            "value": "1234567890"
          },
          "reporter": {
            "label": "John Doe",
            "value": "1234567890"
          },
          "customfield_10015": 3,
          "customfield_10021": [
            {
              "label": "Impediment",
              "value": "10019"
            }
          ]
        },
        "team_name": "Test Team"
      }
    }
  ],
  "pagination": {
    "first": "https://uptime.betterstack.com/api/v2/jira-integrations?page=1",
    "last": "https://uptime.betterstack.com/api/v2/jira-integrations?page=1",
    "prev": null,
    "next": null
  }
}'''

[/responses]

#### Example cURL 

```shell
[label Example]
curl --request GET \
  --url https://uptime.betterstack.com/api/v2/jira-integrations \
  --header "Authorization: Bearer $TOKEN"
```

[info]
#### Looking for the details of a specific parameter?
Explore [the list of all Jira integration API parameters](https://betterstack.com/docs/uptime/api/jira-integrations-response-params/).
[/info]
