- 开放平台须知
- 开放平台接口
- 巡检
- 主数据
- 训练
- 费用单
- 表单
根据月份获取自检任务列表
POST
/{{route}}/ri/open/zjPlan/list
开放平台
最后修改时间:2024-09-05 02:15:01
请求参数
Query 参数
version
string
必需
示例值:
1
Header 参数
Authorization
string
必需
示例值:
{{Authorization}}
Content-Type
string
必需
示例值:
application/json
ent
string
可选
默认值:
{{ent}}
Body 参数application/json
month
string
必需
示例
{
"month": "202010"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location -g --request POST '/{{route}}/ri/open/zjPlan/list?version=1&version=' \
--header 'Authorization: {{Authorization}}' \
--header 'ent: {{ent}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"month": "202010"
}'
返回响应
🟢200正式环境返回字段
application/json
Body
data
array [object {2}]
可选
planName
string
任务名称
planId
number
任务ID
status
number
可选
示例
{
"data": [
{
"planName": "早自检",
"planId": 3
},
{
"planName": "中午自检",
"planId": 2
},
{
"planName": "晚自检",
"planId": 1
}
],
"status": 0
}