按天、周、月统计新增/更新模型(按文件类型返回)
已测完
POST
/zt/api/v1/statistics/fileCountByTypeAndPeriod
2023-10-25
请求参数
Body 参数application/json
startTime
string
开始时间
endTime
string
结束时间
periodType
string
周期类型
示例
{
"startTime": "string",
"endTime": "string",
"periodType": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/zt/api/v1/statistics/fileCountByTypeAndPeriod' \
--header 'Content-Type: application/json' \
--data-raw '{
"startTime": "string",
"endTime": "string",
"periodType": "string"
}'
返回响应
🟢200成功
application/json
Body
模型数量
data
array [object {2}] | null
可选
period
string | null
可选
count
array [object {2}] | null
可选
code
integer | null
可选
msg
string | null
可选
示例
{
"data": [
{
"period": "",
"count": [
{
"fileType": "",
"modelCount": 0
}
]
}
],
"code": 0,
"msg": ""
}
修改于 2024-03-11 02:57:46