You need to enable JavaScript to run this app.
导航
触发标签计算
最近更新时间:2024.06.30 18:36:03首次发布时间:2024.06.30 18:36:03

请求说明

Path:/finder/openApi/v2/cdpMeta/labelSystem/label/rerun
Method: POST

请求参数

Path-parameters:
Header:

参数

类型

是否必选

示例值

描述

X-Tenant

Int

1

项目id

Body

参数

类型

是否必选

示例值

描述

labelId

Int

2

标签id

startDate

String

2023-06-16

开始日期(格式yyyy-MM-dd)

endDate

String

2023-06-16

结束日期(格式yyyy-MM-dd)

返回参数

Response:

{"code":0,"msg":"成功","data":null}

字段含义说明

Field

Type

Description

code

int

状态码

message

string

返回message

data

null

无返回数据

请求示例

bc 为创建的 RangersClient, 其初始化请参考使用说明, 各语言的 SDK 都提供了类似的接口
调用(Python)::

res = bc.request(method='POST', service_url='/finder/openApi/v2/cdpMeta/labelSystem/label/rerun', headers={"Content-Type": "application/json", 'x-Tenant': "1"}, body={'startDate': '2023-06-16', 'endDate': '2023-06-16', 'labelId': 2})
print(res.content)
print(json.loads(res.content))

返回示例

返回结果:

{"code":0,"msg":"成功","data":null}