회사 생성
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"
}
}
Last updated
Was this helpful?