impactors
Creates, updates, deletes, gets or lists an impactors resource.
Overview
| Name | impactors |
| Type | Resource |
| Id | pagerduty.business_services.impactors |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | |
type | string | The kind of object that is impacting (incident) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | ids[] | 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[] 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.
| Name | Datatype | Description |
|---|---|---|
ids[] | string | The IDs of the resources. |
SELECT examples
- list
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[] 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[] }}'
;