sdk/oapiSdk/samples/api/task/v2/patch_section_sample.py

73 lines
2.2 KiB
Python
Raw Normal View History

2025-08-19 10:20:23 +00:00
# Code generated by Lark OpenAPI.
import lark_oapi as lark
from lark_oapi.api.task.v2 import *
def main():
# 创建client
client = lark.Client.builder() \
.app_id(lark.APP_ID) \
.app_secret(lark.APP_SECRET) \
.log_level(lark.LogLevel.DEBUG) \
.build()
# 构造请求对象
request: PatchSectionRequest = PatchSectionRequest.builder() \
.section_guid("9842501a-9f47-4ff5-a622-d319eeecb97f") \
.user_id_type("open_id") \
.request_body(PatchSectionRequestBody.builder()
.section(InputSection.builder().build())
.update_fields([])
.build()) \
.build()
# 发起请求
response: PatchSectionResponse = client.task.v2.section.patch(request)
# 处理失败返回
if not response.success():
lark.logger.error(
f"client.task.v2.section.patch failed, code: {response.code}, msg: {response.msg}, log_id: {response.get_log_id()}")
return
# 处理业务结果
lark.logger.info(lark.JSON.marshal(response.data, indent=4))
# 异步方式
async def amain():
# 创建client
client = lark.Client.builder() \
.app_id(lark.APP_ID) \
.app_secret(lark.APP_SECRET) \
.log_level(lark.LogLevel.DEBUG) \
.build()
# 构造请求对象
request: PatchSectionRequest = PatchSectionRequest.builder() \
.section_guid("9842501a-9f47-4ff5-a622-d319eeecb97f") \
.user_id_type("open_id") \
.request_body(PatchSectionRequestBody.builder()
.section(InputSection.builder().build())
.update_fields([])
.build()) \
.build()
# 发起请求
response: PatchSectionResponse = await client.task.v2.section.apatch(request)
# 处理失败返回
if not response.success():
lark.logger.error(
f"client.task.v2.section.apatch failed, code: {response.code}, msg: {response.msg}, log_id: {response.get_log_id()}")
return
# 处理业务结果
lark.logger.info(lark.JSON.marshal(response.data, indent=4))
if __name__ == "__main__":
# asyncio.run(amain()) 异步方式
main()