List all PagerDuty integrations

Returns a list of all your PagerDuty integrations.

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

Headers

Authorization
required string
200

Response body

{
  "data": [
    {
      "id": "17",
      "type": "pager_duty_webhook",
      "attributes": {
        "name": "Test",
        "key": "[key]"
      }
    }
  ],
  "pagination": {
    "first": "https://uptime.test/api/v2/pager-duty-webhooks?page=1",
    "last": "https://uptime.test/api/v2/pager-duty-webhooks?page=1",
    "prev": null,
    "next": null
  }
}

Example cURL

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