订单绩效导出接口
POST
/openapi/statistic/performance
1.
2.
3.
参数 | 参数说明 |
---|---|
appKey | 企业的appKey |
checksum | SHA1(appSecret + md5 + time), 三个参数拼接的字符串,进行SHA1哈希计算,转化成16进制字符(String,小写) |
time | 当前 UTC 时间戳,从 1970 年 1 月 1 日 0 点 0 分 0 秒开始到现在的秒数 |
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://qiyukf.com/openapi/statistic/performance?appKey=&time=&checksum=' \
--header 'content-type: application/json;charset=utf-8' \
--data-raw '{
"startTime": 1594308486784,
"endTime": 1594308486784,
"staffIdList": [
34240,
92461,
74647
],
"staffGroupList":[
61010,
61011
],
"page": 2,
"pageSize":100
}'
响应示例响应示例
{
"code": 0,
"message": {
"staffId": 0,
"userName": "string",
"nameSpell": "string",
"kefuName": "string",
"serviceNums": 0,
"validServiceNums": 0,
"totalServiceNums": 0,
"sellNums": 0,
"sell48Nums": 0,
"translationRatio": 0,
"translation48Ratio": 0,
"sellMoney": 0,
"sell48Money": 0,
"sellMoneyRatio": 0,
"orderNums": 0,
"order48Nums": 0,
"pieceNums": 0,
"piece48Nums": 0,
"kePieceNums": 0,
"ke48PieceNums": 0,
"keOrderPrice": 0,
"ke48OrderPrice": 0
}
}
请求参数
Query 参数
appKey
string
必需
默认值:
{{appKey}}
time
string
必需
默认值:
{{time}}
checksum
string
必需
默认值:
{{checksum}}
Header 参数
content-type
string
必需
示例值:
application/json;charset=utf-8
Body 参数application/json
返回响应
修改于 2022-01-28 05:48:36