---
title: "Configure Webhook Reception in PagerDuty"
slug: "configure-webhook-reception-in-pagerduty"
updated: 2026-02-23T12:02:54Z
published: 2026-02-23T12:02:54Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://documentation.lakesidesoftware.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Configure Webhook Reception in PagerDuty

> [!NOTE]
> **NOTE**: This documentation was written based on PagerDuty documentation at the time of release. Check [PagerDuty](https://support.pagerduty.com/docs) for the most current documentation.

## User Roles

You will need one of the user roles to add a webhook integration:

- Manager
- Admin or Global Admin
- Account Owner

## Add a Webhook Subscription

1. Follow instructions to [create a generic events API integration](https://support.pagerduty.com/docs/services-and-integrations#create-a-generic-events-api-integration).
2. On the Integrations page, click Events API V2.
3. Find the Integration Key in the Integrations tab by clicking the down arrow to the right of the integration.

Use this key in your webhook to send events to PagerDuty.

## Webhook Body Template for PagerDuty

Copy and paste this content into the Body section of the Add New Recipient dialog box. Edit as needed.

> [!TIP]
> **TIP**: For PagerDuty, add your integration key to the JSON template and use the integration URL with the POST method.

> [!WARNING]
> **IMPORTANT**: You must replace the routing_key property’s value with the customer-generated integration key. You can find this value in [PagerDuty](https://support.pagerduty.com/docs/services-and-integrations#add-integrations-to-an-existing-service) documentation.

```json
{
	"routing_key": "YOUR_ROUTING_KEY",
	"event_action": "trigger",
	"payload": {
		"summary": "@{notificationName}",
		"timestamp": "@{activationTime}",
		"severity": "warning",
		"source": "SysTrack Sensor Notification",
		"custom_details": {      
			"Sensor(s)": "@{sensorNamesUnquoted}",
			"Group": "@{groupName}",
			"Activation": "@{activationThresholdText}",
			"Description": "@{notificationDescription}"
		}
	},
	"links": [
		{
			"href": "@{notificationActivationDetailsURL}",
			"text": "Learn more in SysTrack"
		}
	]
}
```
