@aqa510415008
2020-06-22T16:25:44.000000Z
字数 2067
阅读 795
AppId: 202005159045
Key: 283C3C3F5517E551B492814A8C394B8E
接口域名:http://agent.link.hnzop.com (测试环境)
查询每日机主的销售报表数据,如系统清算失败将不会生成销售报表,需等待清算成功之后才能查询到生成的消息报表。
Url: /api/v1/Public/GetSalesReportsOutList
HttpMethod:POST
HttpContext: application/json
参数 | 类型 | 必填 | 长度 | 描述 | 示例值 |
---|---|---|---|---|---|
appId | String | 是 | 18 | 分配给代理的AppId | 202012345151 |
key | String | 是 | 32 | 分配给代理的秘钥 | 1234sdafsdfadsasdfasd |
date | Date | 是 | 12 | 查询机主销售报表的日期 | 2020-05-25 |
请求示例
curl --request POST 'http://localhost:5000/Public/GetSalesReportsOutList' \
--header 'Content-Type: application/json' \
--data-raw '{
"appId":"202005159045",
"key":"283C3C3F5517E551B492814A8C394B8E",
"date":"2020-05-25"
}'
参数 | 类型 | 必填 | 长度 | 描述 | 示例值 |
---|---|---|---|---|---|
code | String | 是 | - | 返回码 | 200 成功 |
msg | String | 是 | - | 返回码描述 | Success |
data | Object | 是 | - | 返回对象 | -- |
╰ id | String | 是 | - | 报表序号 | 123 |
╰ proxyId | string | 是 | - | 代理唯一标识 | 43 |
╰ ownerId | String | 否 | - | 机主的唯一标识 | 123 |
╰ ownerName | String | 否 | - | 机主的名称 | xxx |
╰ cid | String | 否 | - | 商品的唯一标识 | 4301 |
╰ cName | String | 否 | - | 商品名称 | 5元彩票 |
╰ number | int | 否 | - | 商品的销售数量 | 10 |
╰ amount | Double | 是 | - | 商品的销售金额 | 123.21 |
╰ addTime | Date | 是 | - | 报表生成时间 | 2020-05-06 |
错误示例
{
"data": null,
"code": 40002,
"msg": "签名失败,请使用正确的AppId和Key"
}
成功示例
{
"data": [
{
"id": "2640",
"proxyId": "5",
"ownerId": "77",
"cId": "zj",
"ownerName": "刘润朋",
"cName": "0.1元的纸巾",
"number": 0,
"amount": 0.0,
"addTime": "YYYY-05-DD"
},
{
"id": "2639",
"proxyId": "5",
"ownerId": "77",
"cId": "cp050",
"ownerName": "刘润朋",
"cName": "0.5元彩票",
"number": 0,
"amount": 0.0,
"addTime": "YYYY-05-DD"
}
],
"code": 200,
"msg": "Success"
}
查询代理管理的所有机主信息;唯一标识、手机号、姓名等信息。
Url: /api/v1/Public/GetOwnerOutList
HttpMethod:POST
HttpContext: application/json
参数 | 类型 | 必填 | 长度 | 描述 | 示例值 |
---|---|---|---|---|---|
appId | String | 是 | 18 | 分配给代理的AppId | 202012345151 |
key | String | 是 | 32 | 分配给代理的秘钥 | 1234sdafsdfadsasdfasd |
请求示例
curl --request POST 'http://localhost:5000/Public/GetOwnerOutList' \
--header 'Content-Type: application/json' \
--data-raw '{
"appId":"202005159045",
"key":"283C3C3F5517E551B492814A8C394B8E"
}'
参数 | 类型 | 必填 | 长度 | 描述 | 示例值 |
---|---|---|---|---|---|
code | String | 是 | - | 返回码 | 200 成功 |
msg | String | 是 | - | 返回码描述 | Success |
data | Object[] | 是 | - | 返回对象数组 | -- |
╰ id | String | 是 | - | 机主唯一标识 | 123 |
╰ name | string | 是 | - | 机主真实姓名 | 李四 |
╰ telphone | String | 否 | - | 机主手机编号 | 86+12345678912 |
错误示例
{
"data": null,
"code": 40002,
"msg": "签名失败,请使用正确的AppId和Key"
}
成功示例
{
"data": [
{
"id": "72",
"name": "挽不回",
"telphone": "86+12312312312"
},
{
"id": "69",
"name": "刘幸福",
"telphone": "86+123123123"
},
{
"id": "67",
"name": "快乐",
"telphone": "86+123123123"
}
],
"code": 200,
"msg": "Success"
}