- 数据服务h5
- 扫码支付
- 商户开卡
- 公共接口
- 登录相关
- 终端互联
- 国补-江苏地区
- 登录接口POST
行为占比
POST
/api/h5/mchnt/getTxnBehavior.fuiou
请求参数
Header 参数
token
string
全局唯一凭证
默认值:
1f660f55c7574a3cb9fc4f10b91893c6
Body 参数application/json
startDate
string
必需
endDate
string
必需
示例
{
"startDate": "2024-05-01",
"endDate": "2024-05-31"
}
示例代码
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/api/h5/mchnt/getTxnBehavior.fuiou' \
--header 'token;' \
--header 'Content-Type: application/json' \
--data-raw '{
"startDate": "2024-05-01",
"endDate": "2024-05-31"
}'
返回响应
🟢200成功
application/json
Body
code
string
必需
msg
string
必需
data
object
必需
activeCount
string
活跃商户数量
flowCount
string
流失商户数量
addCount
string
新增商户数量
total
string
总数
示例
{
"code": "0000",
"msg": "",
"data": {
"activeCount": "4",
"flowCount": "0",
"addCount": "0",
"total": "4"
}
}