Customer
고객 목록 조회
GET /customers
GET
/api/rest/v1/customers고객 목록 조회
인증: Bearer 인증키 (REST_API) 또는 세션
Query Parameters
| 이름 | 타입 | 설명 |
|---|---|---|
page | number | - |
limit | number | - |
search | string | 이름/이메일/회사명 |
group | string | - |
isDeleted | boolean | - |
Response Example
{
"data": [
{
"id": "...",
"name": "김고객",
"email": "customer@example.com"
}
],
"meta": {
"page": 1,
"limit": 20,
"total": 1,
"totalPages": 1
}
}