Get a single PagerDuty integration

Returns a single PagerDuty integration by ID.

GET https://uptime.betterstack.com/api/v2/pager-duty-webhooks/{pager_duty_webhook_id}

URL parameters

pager_duty_webhook_id
required string

Headers

Authorization
required string
200

Response body

{
  "data": {
    "id": "17",
    "type": "pager_duty_webhook",
    "attributes": {
      "name": "test",
      "key": "[key]"
    }
  }
}

Example cURL

Example
curl --request GET \
  --url https://uptime.betterstack.com/api/v2/pager-duty-webhooks/17 \
  --header "Authorization: Bearer $TEAM_TOKEN"