curl --location --request POST '/open_api//work_item///comment/create' \
--header 'X-PLUGIN-TOKEN: {{plugin_token}}' \
--header 'X-USER-KEY: {{user_key}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"content": "创建test", // content参数与rich_text参数,可选择其中一个赋值,但不可全为空
"rich_text": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "一级标题",
"attrs": {
"fontColor": "green",
"fontSize": "h1"
}
}
]
}
]
}'{
"data": 18961,
"err": {},
"err_msg": "",
"err_code": 0
}