Skip to main content

url_slugs

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

Overview

Nameurl_slugs
TypeResource
Idpagerduty.status_dashboards.url_slugs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring
namestring
url_slugstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselecturl_slugGet a Status Dashboard by its PagerDuty 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 />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

SELECT examples

Get a Status Dashboard by its PagerDuty 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 />Scoped OAuth requires: status_dashboards.read<br />

SELECT
id,
name,
url_slug
FROM pagerduty.status_dashboards.url_slugs
WHERE url_slug = '{{ url_slug }}' -- required
;