Logo
Real UISupport 3 Docs

Customer

고객 목록 조회

GET /customers

GET
/api/rest/v1/customers

고객 목록 조회

인증: Bearer 인증키 (REST_API) 또는 세션

Query Parameters
이름타입설명
pagenumber-
limitnumber-
searchstring이름/이메일/회사명
groupstring-
isDeletedboolean-
Response Example
{
  "data": [
    {
      "id": "...",
      "name": "김고객",
      "email": "customer@example.com"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 20,
    "total": 1,
    "totalPages": 1
  }
}