For the complete documentation index, see llms.txt. This page is also available as Markdown.

회사 생성

POST /v2/organization

회사를 생성합니다.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body parameters

Name
Type
Description

name

string

생성하려는 회사의 이름 Required (*같은 이름의 회사가 이미 있거나 워크스페이스에서 중복 방지가 설정된 데이터필드 값이 기존 회사와 충돌하면 생성 실패 메시지를 받으실 수 있습니다.)

memo

string

회사 생성 시 작성할 메모

fieldList

array

생성할 회사의 데이터필드

Response

{
  "success": true,
  "data": {
    "organization": {
      "id": "<organizationId>",
      "name": "생성한 회사의 이름",
      "createdAt": "2024-04-08T05:25:26.020Z"
    }
  }
}
{
  "success": false,
  "message": "Bad Request",
  "reason": "이미 존재하는 이름입니다",
  "data": {
    "id": "<organizationId>",
    "name": "기존 회사의 이름"
  }
}

Last updated

Was this helpful?