客户列表

查询客户列表,分页

适用于白标查询全部客户资料时使用,考虑到客户量较多时,可以分批获取,可以指定每一批数量,默认最大不超过2000条。

客户列表

列表

POSThttps://pre-api-test.cmfbl.com/openapi-b/global/customer.admin.WhiteCustomerAdminApiService.page
Query parameters
Header parameters
Response

OK

Body
bizCodestring

模块标识码

codestring

状态返回码

dataBasePageVo«WhiteCustomerAdminPageVO»
failboolean
msgstring

状态描述

msgParamsstring

返回描述中占位符参数串,多个参数间以,分割

okboolean
tminteger (int64)

处理时长(毫秒)

tracestring

跟踪码

Request
const response = await fetch('https://pre-api-test.cmfbl.com/openapi-b/global/customer.admin.WhiteCustomerAdminApiService.page', {
    method: 'POST',
    headers: {
      "trace": "text"
    },
});
const data = await response.json();
Response
{
  "bizCode": "text",
  "code": "text",
  "data": {
    "current": 0,
    "records": [
      {
        "agentCustomerNo": "text",
        "companyId": 0,
        "createTime": 0,
        "customerGroupId": 0,
        "customerGroupName": "text",
        "customerNo": "text",
        "customerType": 0,
        "email": "text",
        "firstAccountActivateTime": 0,
        "firstName": "text",
        "id": 0,
        "idCard": "text",
        "idCardType": "text",
        "lastName": "text",
        "loginTime": 0,
        "name": "text",
        "openAccountType": 0,
        "phone": "text",
        "phoneArea": "text",
        "registerSource": 0,
        "remark": "text",
        "status": 0,
        "tgUserId": "text",
        "tgUserName": "text",
        "thirdAccountNo": "text",
        "thirdLoginSource": "text",
        "thirdUserId": "text",
        "unitId": 0,
        "unitName": "text",
        "updateTime": 0
      }
    ],
    "size": 0,
    "total": 0
  },
  "fail": false,
  "msg": "text",
  "msgParams": "text",
  "ok": false,
  "tm": 0,
  "trace": "text"
}

Last updated