curl --request GET \
--url https://partner.peaka.studio/api/v1/data/projects/{projectId}/queries/folders \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Reports",
"path": "/Reports",
"parentId": null,
"createdAt": "2025-01-15T10:30:00Z"
},
{
"id": "550e8400-e29b-41d4-a716-446655440001",
"name": "Monthly",
"path": "/Reports/Monthly",
"parentId": "550e8400-e29b-41d4-a716-446655440000",
"createdAt": "2025-01-15T10:31:00Z"
}
]
}Returns all query folders belonging to the given project as a flat list.
curl --request GET \
--url https://partner.peaka.studio/api/v1/data/projects/{projectId}/queries/folders \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Reports",
"path": "/Reports",
"parentId": null,
"createdAt": "2025-01-15T10:30:00Z"
},
{
"id": "550e8400-e29b-41d4-a716-446655440001",
"name": "Monthly",
"path": "/Reports/Monthly",
"parentId": "550e8400-e29b-41d4-a716-446655440000",
"createdAt": "2025-01-15T10:31:00Z"
}
]
}

Use the Authorization header with the value 'Bearer
ID of the Project
Folders listed successfully
Response containing a list of query folders
List of folders in the project
Show child attributes