Skip to main content

url_slug_service_impacts

Creates, updates, deletes, gets or lists a url_slug_service_impacts resource.

Overview

Nameurl_slug_service_impacts
TypeResource
Idpagerduty.status_dashboards.url_slug_service_impacts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring
namestring
additional_fieldsobject
statusstringThe current impact status of the object (impacted, not_impacted)
typestringThe kind of object that has been impacted (business_service)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselecturl_slugadditional_fields[]Get Business Service Impacts for the Business Services on a Status Dashboard by its url_slug. A url_slug is a human-readable reference<br />for a custom Status Dashboard that may be created or changed in the UI. It will generally be a dash-separated-string-like-this.<br /><br />This endpoint does not return an exhaustive list of Business Services but rather provides access to the most impacted on the Status Dashboard up to the limit of 200.<br /><br />The returned Business Services are sorted first by Impact, secondarily by most recently impacted, and finally by name.<br /><br />To get impact information about a specific Business Service on the Status Dashboard that does not appear in the Impact-sored response, use the ids&#91;&#93; parameter on the /business_services/impacts endpoint.<br /><br />Scoped OAuth requires: status_dashboards.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
url_slugstringThe url_slug for a status dashboard
additional_fields[]stringProvides access to additional fields such as highest priority per business service and total impacted count

SELECT examples

Get Business Service Impacts for the Business Services on a Status Dashboard by its url_slug. A url_slug is a human-readable reference<br />for a custom Status Dashboard that may be created or changed in the UI. It will generally be a dash-separated-string-like-this.<br /><br />This endpoint does not return an exhaustive list of Business Services but rather provides access to the most impacted on the Status Dashboard up to the limit of 200.<br /><br />The returned Business Services are sorted first by Impact, secondarily by most recently impacted, and finally by name.<br /><br />To get impact information about a specific Business Service on the Status Dashboard that does not appear in the Impact-sored response, use the ids&#91;&#93; parameter on the /business_services/impacts endpoint.<br /><br />Scoped OAuth requires: status_dashboards.read<br />

SELECT
id,
name,
additional_fields,
status,
type
FROM pagerduty.status_dashboards.url_slug_service_impacts
WHERE url_slug = '{{ url_slug }}' -- required
AND additional_fields[] = '{{ additional_fields[] }}'
;