Customer
고객 생성
POST /customers
POST
/api/rest/v1/customers고객 생성
인증: Bearer 인증키 (REST_API) 또는 세션
Request Body
| 이름 | 타입 | 설명 |
|---|---|---|
name* | string | - |
email* | string | - |
group | string | 기본 DEFAULT |
companyName | string | - |
phone | string | - |
mappedUserId | string | - |
Response Example
{
"data": {
"id": "...",
"name": "김고객",
"email": "customer@example.com"
}
}