Skip to content

생성 Default

POST/projects/{id}/foldersCopied!

프로젝트 폴더를 생성해요.

접근 가능한 사용자

사용자

Request

Body

namestringrequired
폴더 이름

Path

idstringrequired
프로젝트 ID

Response

Returns 201 Created.

idstring
생성된 폴더 ID

Example

bash
curl -X POST 'https://api.youvico.com/projects/6ba7b810-9dad-11d1-80b4-00c04fd430c8/folders' \
  -H 'Authorization: Bearer xoau.aB3xK9p2QwR7sT4uV1nM8oP5qL6rN0yZ7eF2gH4jK...' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "시안"
  }'
json
{
  "id": "123e4567-e89b-12d3-a456-426614174000"
}