Skip to main content

impactors

Creates, updates, deletes, gets or lists an impactors resource.

Overview

Nameimpactors
TypeResource
Idpagerduty.business_services.impactors

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring
typestringThe kind of object that is impacting (incident)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectids[]Retrieve a list of Impactors for the top-level Business Services on the account. Impactors are currently limited to Incidents.<br /><br />This endpoint does not return an exhaustive list of Impactors but rather provides access to the highest priority Impactors for the Business Services in question up to the limit of 200.<br /><br />To get Impactors for a specific set of Business Services, use the ids&#91;&#93; parameter.<br /><br />The returned Impactors are sorted first by priority and secondarily by their creation date.<br />Scoped OAuth requires: services.read<br />

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
ids[]stringThe IDs of the resources.

SELECT examples

Retrieve a list of Impactors for the top-level Business Services on the account. Impactors are currently limited to Incidents.<br /><br />This endpoint does not return an exhaustive list of Impactors but rather provides access to the highest priority Impactors for the Business Services in question up to the limit of 200.<br /><br />To get Impactors for a specific set of Business Services, use the ids&#91;&#93; parameter.<br /><br />The returned Impactors are sorted first by priority and secondarily by their creation date.<br />Scoped OAuth requires: services.read<br />

SELECT
id,
type
FROM pagerduty.business_services.impactors
WHERE ids[] = '{{ ids[] }}'
;