url_slugs
Creates, updates, deletes, gets or lists a url_slugs resource.
Overview
| Name | url_slugs |
| Type | Resource |
| Id | pagerduty.status_dashboards.url_slugs |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | |
name | string | |
url_slug | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | url_slug | 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 /> |
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 |
|---|---|---|
url_slug | string | The url_slug for a status dashboard |
SELECT examples
- get
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
;