You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .generator/schemas/v2/openapi.yaml
+62-2Lines changed: 62 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -106117,7 +106117,7 @@ paths:
106117
106117
permissions:
106118
106118
- status_pages_settings_read
106119
106119
post:
106120
-
description: Creates a new status page.
106120
+
description: "Creates a new status page. **Note**: Publishing a status page on creation via the `enabled` property will be deprecated. Use the dedicated [publish](https://docs.datadoghq.com/api/latest/status-pages/#publish-status-page) status page endpoint after creation instead."
106121
106121
operationId: CreateStatusPage
106122
106122
parameters:
106123
106123
- description: "Comma-separated list of resources to include. Supported values: created_by_user, last_modified_by_user."
@@ -106332,7 +106332,7 @@ paths:
106332
106332
permissions:
106333
106333
- status_pages_settings_read
106334
106334
patch:
106335
-
description: Updates an existing status page's attributes.
106335
+
description: "Updates an existing status page's attributes. **Note**: Publishing and unpublishing via the `enabled` property will be deprecated on this endpoint. Use the dedicated [publish](https://docs.datadoghq.com/api/latest/status-pages/#publish-status-page) and [unpublish](https://docs.datadoghq.com/api/latest/status-pages/#unpublish-status-page) status page endpoints instead."
106336
106336
operationId: UpdateStatusPage
106337
106337
parameters:
106338
106338
- description: Whether to delete existing subscribers when updating a status page's type.
@@ -106931,6 +106931,66 @@ paths:
106931
106931
operator: AND
106932
106932
permissions:
106933
106933
- status_pages_incident_write
106934
+
/api/v2/statuspages/{page_id}/publish:
106935
+
post:
106936
+
description: Publishes a status page. For pages of type `public`, makes the status page available on the public internet and requires the `status_pages_public_page_publish` permission. For pages of type `internal`, makes the status page available under the `/view` route within the Datadog organization and requires the `status_pages_internal_page_publish` permission. The `status_pages_settings_write` permission is temporarily honored as we migrate publishing functionality from the update status page endpoint to the publish status page endpoint.
description: Unpublishes a status page. For pages of type `public`, removes the status page from the public internet and requires the `status_pages_public_page_publish` permission. For pages of type `internal`, removes the `/view` route from the Datadog organization and requires the `status_pages_internal_page_publish` permission. The `status_pages_settings_write` permission is temporarily honored as we migrate unpublishing functionality from the update status page endpoint to the unpublish status page endpoint.
0 commit comments