Get Grafana folder by UID
GET/v1/grafana/api/folders/:id
Returns a single folder by UID. Make sure the region in the URL matches your account's region.
Request
Path Parameters
uid stringrequired
The UID of the folder
Responses
- 200
Folder details
- application/json
- Schema
- Example (from schema)
Schema
id integer
uid string
title string
url string
created date-time
updated date-time
createdBy string
updatedBy string
version int64
{
"id": 0,
"uid": "string",
"title": "string",
"url": "string",
"created": "2025-08-27T07:47:13.346Z",
"updated": "2025-08-27T07:47:13.346Z",
"createdBy": "string",
"updatedBy": "string",
"version": 0
}
Loading...