Request
Add parameter in header Authorization
Example:Authorization: ********************
Body Params application/json
{
"pageSize": "100",
"pageIndex": "1",
"customerName": "string",
"customerType": "string",
"status": true,
"customerId": "string",
"subsumption": "false"
}
Request Code Samples
curl --location --request POST 'https://mettahub.mettaxiot.com/gps/v2/openapi/customer/page' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"pageSize": "100",
"pageIndex": "1",
"customerName": "string",
"customerType": "string",
"status": true,
"customerId": "string",
"subsumption": "false"
}'
Responses
application/json {
"code": 0,
"data": {
"records": [
{
"id": "",
"pid": "",
"customerName": "",
"customerType": "",
"contactName": "",
"contactTel": "",
"contactMail": "",
"contactAddress": "",
"leaf": false,
"parentCustomerName": ""
}
],
"total": 0,
"size": 0,
"current": 0
},
"msg": ""
}
Modified at 2025-12-29 08:39:28