• 添加业务
  • 删除业务
  • 修改业务启用状态
  • 修改业务
  • 查询业务

    添加业务

    • API: POST /api/{version}/biz/{bk_supplier_account}
    • API 名称:create_business
    • 功能说明:

      • 中文:新建业务
      • English:create a new business
    • input body

    1. {
    2. "bk_biz_name": "cc_app_test",
    3. "bk_biz_maintainer": "admin",
    4. "bk_biz_productor": "admin",
    5. "bk_biz_developer": "admin",
    6. "bk_biz_tester": "admin",
    7. }

    注:以上 JSON 数据中各字段的取值仅为示例数据。

    • input 字段说明
    字段 类型 必填 默认值 说明 Description
    bk_supplier_account string 开发商账号 supplier account code
    bk_biz_name string 业务名 the business name
    bk_biz_maintainer string 运维人员 operation staff
    bk_biz_developer string 开发人员 the developer
    bk_biz_tester string 测试人员 the tester

    注:此处的输入参数仅对必填以及系统内置的参数做了说明,其余需要填写的参数取决于用户自己定义的属性字段。

    删除业务

    • API: DELETE /api/{version}/biz/{bk_supplier_account}/{bk_biz_id}
    • API 名称:delete_business
    • 功能说明:

      • 中文:删除业务
      • English:delete a business
    • input body

    • input 字段说明

    字段 类型 必填 默认值 说明 Description
    bk_biz_id int 业务id the business id
    bk_supplier_account string 开发商账号 supplier account code
    • output
    1. {
    2. "result": true,
    3. "bk_error_code": 0,
    4. "bk_error_msg": null,
    5. "data": "success"
    6. }

    注:以上 JSON 数据中各字段的取值仅为示例数据。

    • output 字段说明
    字段 类型 说明 Description
    result bool ture:成功,false:失败 true:success, false: failure
    bk_error_code int 错误编码。 0表示success,>0表示失败错误 error code. 0 represent success, >0 represent failure code
    bk_error_msg string 请求失败返回的错误信息 error message from failed request
    data string 操作结果 the result

    修改业务启用状态

    • API: PUT /api/{version}/biz/status/{flag}/{bk_supplier_account}/{bk_biz_id}
    • API 名称:update_business_enable_status
    • 功能说明:

      • 中文:修改业务启用状态
      • English:update the business enable status
    • input body

    注:以上 JSON 数据中各字段的取值仅为示例数据。

    • input 字段说明
    字段 类型 必填 默认值 说明 Description
    bk_biz_id int 业务id the business id
    bk_supplier_account string 开发商账号 supplier account code
    flag string 启用状态,为disabled 或者enable the business name, it should be disabled or enable
    • output
    1. {
    2. "result": true,
    3. "bk_error_code": 0,
    4. "bk_error_msg": null,
    5. "data": "success"
    6. }
    • output 字段说明
    字段 类型 说明 Description
    result bool ture:成功,false:失败 true:success, false: failure
    bk_error_code int 错误编码。 0表示success,>0表示失败错误 error code. 0 represent success, >0 represent failure code
    bk_error_msg string 请求失败返回的错误信息 error message from failed request
    data string 操作结果 the result

    修改业务

    • API: PUT /api/{version}/biz/{bk_supplier_account}/{bk_biz_id}
    • API 名称:update_business
    • 功能说明:

      • 中文:更新业务信息
      • English:update the business
    • input body

    1. {
    2. "bk_biz_developer": "",
    3. "bk_biz_maintainer": "admin,jobdevelop,cmdbdevelop",
    4. "bk_biz_name": "example_biz",
    5. "bk_biz_productor": "admin",
    6. "bk_biz_tester": "",
    7. }

    注:以上 JSON 数据中各字段的取值仅为示例数据。

    • input 字段说明
    字段 类型 必填 默认值 说明 Description
    bk_biz_id int 业务id the business id
    bk_supplier_account string 开发商账号 supplier account code
    bk_biz_name string 业务名称 the business name
    bk_biz_developer string 开发人员 the developer
    bk_biz_maintainer string 运维人员 the maintainers
    bk_biz_productor string 产品人员 the productor
    bk_biz_tester string 测试人员 the tester

    注:此处的输入参数仅对必填以及系统内置的参数做了说明,其余需要填写的参数取决于用户自己定义的属性字段。

    • output
    1. {
    2. "result": true,
    3. "bk_error_code": 0,
    4. "bk_error_msg": null,
    5. "data": "success"
    6. }

    注:以上 JSON 数据中各字段的取值仅为示例数据。

    • output 字段说明
    字段 类型 说明 Description
    result bool ture:成功,false:失败 true:success, false: failure
    bk_error_code int 错误编码。 0表示success,>0表示失败错误 error code. 0 represent success, >0 represent failure code
    bk_error_msg string 请求失败返回的错误信息 error message from failed request
    data string 操作结果 the result

    查询业务

    • API: POST /api/{version}/biz/search/{bk_supplier_account}
    • API 名称:search_business
    • 功能说明:

      • 中文:查询业务
      • English:search the business
    • input body

    1. {
    2. "page": {
    3. "start": 0,
    4. "limit": 10,
    5. "sort": ""
    6. },
    7. "fields": [],
    8. "condition": {}
    9. }

    注:以上 JSON 数据中各字段的取值仅为示例数据。

    • input 字段说明:
    字段 类型 必填 默认值 说明 Description
    fields array 指定查询的字段 need to show
    condition object 查询条件 search condition
    page object 分页条件 page condition

    page 参数说明:

    名称 类型 必填 默认值 说明 Description
    start int 记录开始位置 start record
    limit int 每页限制条数,最大200 page limit, max is 200
    sort string 排序字段 the field for sort

    注:sort 字段通过在字段前面增加 -,如 sort:”-field” 可以表示按照字段field降序。

    fields参数说明:

    参数为业务的任意属性,如果不填写字段信息,系统会返回业务的所有字段。

    注:需要填写的参数取决于用户自己定义的属性字段。

    condition 参数说明:

    condition 参数为业务的任意属性,如果不写代表搜索全部数据。

    注:需要填写的参数取决于用户自己定义的属性字段。