# Get PagerDuty integration

Returns a single PagerDuty integration by ID.

[endpoint]
base_url = "https://uptime.betterstack.com"
path = "/api/v2/pager-duty-webhooks/{pager_duty_webhook_id}"
method = "GET"

[[path_param]]
name = "pager_duty_webhook_id"
description = "The ID of the PagerDuty integration you want to get."
required = true
type = "string"

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

[responses]
[[response]]
status = 200
description = '''Returns a single PagerDuty integration'''
body = '''{
  "data": {
    "id": "17",
    "type": "pager_duty_webhook",
    "attributes": {
      "name": "test",
      "key": "[key]",
      "team_name": "My team"
    }
  }
}'''

[/responses]

#### Example cURL 

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

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