Get all folders
GET/v1/grafana/api/folders
Returns all folders that the authenticated user has permission to view. Please ensure to change the region in the URL to match your account's region.
Request
Query Parameters
limit integer
Maximum number of folders to return (default is 1000)
page integer
Page number for fetching folders from other than the first one
parentUid string
Parent folder UID for fetching subfolders (optional)
Responses
- 200
List of folders
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
id integer
uid string
title string
[
{
"id": 0,
"uid": "string",
"title": "string"
}
]
Loading...