- 数据服务h5
- 扫码支付
- 商户开卡
- 公共接口
- 登录相关
- 终端互联
- 国补-江苏地区
- 商户线索
- 登录接口POST
统计各状态线索数量
开发中
POST
/mclue.fuiou/countByStatus
请求参数
Header 参数
Content-Type
string
可选
示例值:
application/json
token
string
全局唯一凭证
默认值:
7a916c6235ec40a1b4dc21b5c272dcbb
Body 参数application/json
object {0}
示例
{
"nameOrNumber": "小"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://mngapp-test.fuioupay.com/mclue.fuiou/countByStatus' \
--header 'token;' \
--header 'Content-Type: application/json' \
--data-raw '{
"nameOrNumber": "小"
}'
返回响应
🟢200成功
application/json
Body
code
string
必需
msg
string
必需
data
array [object {4}]
必需
mchntStatus
string
状态
statusDesc
string
必需
count
integer
必需
clueStatus
string
可选
success
boolean
必需
示例
{
"code": "0000",
"msg": "sucess",
"data": [
{
"mchntStatus": "0",
"statusDesc": "处理中",
"count": 0
},
{
"mchntStatus": "4",
"statusDesc": "待处理",
"count": 0
},
{
"mchntStatus": "1",
"statusDesc": "已处理",
"count": 2
},
{
"statusDesc": "全部",
"count": 2,
"clueStatus": "all"
}
],
"success": true
}
修改于 2025-06-12 10:29:00