회사 생성
Name
Value
Name
Type
Description
//성공시
{
"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?