- 用户
- 机构
- 专家分组
- 公共接口
- 项目
- 申请书
- 实施方案
- 合同书
- 进展报告
- 入口开关管理
- 工作
- 工作记录
- 小程序
- 统计指标
- 确证检测工作-已提交待完善列表
- 确证检测列表上的计数(草稿数、已提交待完善数)
- 确证检测工作-补充开始服药日期
- 获取现场初筛工作详情
- 确证检测工作新增或更新
- 1v1关怀工作新增或更新
- 获取1v1关怀工作详情
- 线上干预工作新增或更新
- 获取线上干预工作详情
- 线下干预工作新增或更新
- 获取线下干预工作详情
- app获取预约管理列表
- 统计预约管理列表数量
- 现场初筛工作新增或更新
- 邮寄自检工作新增或更新
- 获取邮寄自检工作详情
- 获取确证检测工作详情
- 集体关怀工作新增或更新
- 获取集体关怀工作详情
- 删除工作
- 通过服务对象手机号创建工作记录(邮寄自检、初筛、确证创建服务时使用)
- 通过检测预约信息创建工作记录(邮寄自检、初筛、确证创建服务时使用)
- 获取机构人员可选列表
- app 预约单详情
- 获取线下干预地点可选列表
- 获取行为风险评估问卷
- 获取工作人员二维码(初筛、确证)
- 获取服务对象检测记录列表(初筛、确证)
- 获取待办工作列表(初筛、确证)
- 核销检测预约
- 服务对象
- 行政树
- 干预地点
- 审计日志
- 数据导出
- 消息
- 授权管理
- 预约检测
- 小程序用户
- 功能开关
- 文章-pc端
- 官网
- 大屏
文章管理列表
POST
/api/article/list
v3.8
请求参数
Header 参数
token
string
登录凭证
默认值:
{{token}}
client
string
必需
默认值:
{{pc_client}}
Body 参数application/json
title
string
标题
author
string
作者
startCreateTime
integer
创建时间开始
endCreateTime
integer
创建时间结束
createUids
array[string]
提交账号id组
status
string
状态
case HAS_PUBLISH = 'has_publish'; //已发布
articleColumnId
string
栏目id
platform
string
平台id-与栏目id互斥
case APPLET = 'applet'; //小程序
page
integer
必需
pageSize
integer
必需
示例
{
"title": "string",
"author": "string",
"startCreateTime": 0,
"endCreateTime": 0,
"createUids": [
"string"
],
"status": "string",
"articleColumnId": "string",
"platform": "string",
"page": 0,
"pageSize": 0
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/article/list' \
--header 'token;' \
--header 'client;' \
--header 'Content-Type: application/json' \
--data-raw '{
"title": "string",
"author": "string",
"startCreateTime": 0,
"endCreateTime": 0,
"createUids": [
"string"
],
"status": "string",
"articleColumnId": "string",
"platform": "string",
"page": 0,
"pageSize": 0
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
message
string
必需
data
object
必需
total
integer
必需
items
array [object {13}]
必需
示例
{
"code": 0,
"message": "string",
"data": {
"total": 0,
"items": [
{
"id": "string",
"title": "string",
"articleColumnItems": [
{
"id": "string",
"name": "string",
"platform": "string"
}
],
"articleColumnNamesText": "string",
"author": "string",
"readCnt": 0,
"collectCnt": 0,
"shareCnt": 0,
"weight": 0,
"createTime": 0,
"createName": "string",
"createUid": "string",
"status": "string"
}
]
}
}
修改于 2024-11-19 10:40:34