Skip to content

폴더 목록 Tier 2

GET/api/projects/:id/foldersCopied!

프로젝트의 폴더를 폴더 순서대로 반환합니다.

요청

경로

idstringrequired
프로젝트 ID

응답

200 OK를 반환합니다.

dataarray
폴더
data[].idstring
폴더 ID

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

data[].namestring
폴더 이름

Example: Renders

예시

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"
    }
  ]
}