Docs: Dashboards and folders: Add annotation and label restriction (#116049)

This commit is contained in:
Stephanie Hingtgen
2026-01-09 14:53:56 -07:00
committed by GitHub
parent 0c8c886930
commit 5ff18c0802
2 changed files with 16 additions and 0 deletions

View File

@@ -231,6 +231,10 @@ JSON Body schema:
HTTP/1.1 200 OK
Content-Type: application/json; charset=UTF-8
Content-Length: 644
```
The `metadata.continue` field contains a token to fetch the next page.
**Example subsequent request using continue token**:
@@ -521,6 +525,10 @@ JSON Body schema:
```http
HTTP/1.1 200
Content-Type: application/json
```
Status Codes:
- **200** Deleted
- **401** Unauthorized

View File

@@ -259,6 +259,10 @@ JSON Body schema:
```
### Delete folder
`DELETE /apis/folder.grafana.app/v1beta1/namespaces/:namespace/folders/:uid`
Deletes an existing folder identified by UID along with all dashboards (and their alerts) stored in the folder. This operation cannot be reverted.
If [Grafana Alerting](ref:alerting) is enabled, you can set an optional query parameter `forceDeleteRules=false` so that requests will fail with 400 (Bad Request) error if the folder contains any Grafana alerts. However, if this parameter is set to `true` then it will delete any Grafana alerts under this folder.
@@ -337,6 +341,10 @@ JSON Body schema:
Authorization: Bearer eyJrIjoiT0tTcG1pUlY2RnVKZTFVaDFsNFZXdE9ZWmNrMkZYbk
```
**Example Response**:
```http
HTTP/1.1 200
Content-Type: application/json
```