Skip to content

List Folders Tier 2

GET/api/projects/:id/foldersCopied!

Returns folders in a project, ordered by their folder order.

Request

Path

idstringrequired
Project ID

Response

Returns 200 OK.

dataarray
Folders
data[].idstring
Folder ID

Example: 4da45fd7-207c-47e7-b7d0-d711a565a901

data[].namestring
Folder name

Example: Renders

Example

bash
curl 'https://api.youvico.com/api/projects/bdbff5de-96d7-468f-9db0-85fe28bd6b62/folders' \
  -H 'Authorization: Bearer YOUR_API_KEY'
json
{
  "data": [
    {
      "id": "4da45fd7-207c-47e7-b7d0-d711a565a901",
      "name": "Renders"
    }
  ]
}