폴더 수정 Tier 4
PATCH/api/folders/:idCopied!
폴더를 수정합니다.
예시
ts
await client.folders.update("DX1234567890ABCD", {
name: "Approved renders",
});bash
youvico folder update --id DX1234567890ABCD --name="Approved renders"bash
curl -X PATCH 'https://api.youvico.com/api/folders/DX1234567890ABCD' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{ "name": "Approved renders" }'요청
경로
idstringrequired 폴더 ID
본문
namestring1–64 characters
폴더 이름
응답
204 No Content를 반환합니다.