You need to enable JavaScript to run this app.
导航
删除创建分群
最近更新时间:2024.06.30 18:36:02首次发布时间:2024.06.30 18:36:02

请求说明

Path:/openapi/v1/{app_id}/cohorts/{cohort_id}
Method: DELETE
Content-type: application/json

请求参数

Path-parameters:

参数

类型

是否必选

示例值

描述

cohort_id

int

1001076

分群ID

返回参数

Response:

{
    "code": 200,
    "message": "success",
    "data": null
}

请求示例

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

# 例如,app_id= 164314 cohort id= 1001076
res = bc.data_finder('/openapi/v1/164314/cohorts/1001076', method='delete')
print(res.content)

返回示例

返回结果:

{
    "code": 200,
    "message": "success",
    "data": null
}