Search dashboard folders
GET/perses-pulic/api/v1/projects/search
Searches for dashboard folders (projects) by name.
Request
Query Parameters
query stringrequired
The search query to filter folders by name.
limit integer
Maximum number of folders to return (default is 1000)
Example: 1000
page integer
Page number for fetching folders from other than the first one
Example: 1
sort string
Sort criteria for the results (e.g., 'asc', 'desc')
Example: asc
Responses
- 200
List of matching folders
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
id string
name string
[
{
"id": "folder-1",
"name": "my-folder"
}
]
Loading...