获取用户大纲次数
接入前提
获取调用API所需的TOKEN
请参考鉴权
说明
接口描述 | 此接口用于获取用户大纲次数。 | ||
接口地址 | /api/statistic/user/task | 请求方式 | POST |
权限校验 | 是 | 请求参数 | json |
请求参数
请求示例
ts
curl --location --request POST 'https://co.aippt.cn/api/statistic/user/task' \
--header 'x-api-key: yo_api_key' \
--header 'x-timestamp: timestamp' \
--header 'x-signature: signature' \
--header 'Accept: */*' \
--header 'Connection: keep-alive' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'channel=' \
--data-urlencode 'uid=test1' \
--data-urlencode 'uid=test2' \
响应内容
响应示例
ts
{
"code": 0,
"data": "[{
"uid": "test",
"count": 6689
}]",
"msg": "ok"
}