Skip to content

获取用户大纲次数

接入前提

获取调用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"
}