Skip to content

생성 Tier 1

POST/workspacesCopied!

새 워크스페이스를 만들고 요청자를 소유자로 등록해요.

접근 가능한 사용자

사용자

Request

Body

namestringrequired
워크스페이스 이름

Response

Returns 201 Created.

idstring
생성된 워크스페이스 ID

Example: 6ba7b810-9dad-11d1-80b4-00c04fd430c8

Example

bash
curl -X POST 'https://api.youvico.com/workspaces' \
  -H 'Authorization: Bearer xoau.aB3xK9p2QwR7sT4uV1nM8oP5qL6rN0yZ7eF2gH4jK...' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "유비코 디자인팀"
  }'
json
{
  "id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8"
}