curl --location --request POST '/open_api//field//create' \
--header 'X-PLUGIN-TOKEN: {{plugin_token}}' \
--header 'X-USER-KEY: {{user_key}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"field_name": "openapi_create", //字段名称
"field_type_key": "tree_multi_select", //字段类型
"value_type": 0, //选项值来源
"free_add": 1, //是否允许用户添加选项
"field_alias": "openapi_create", //字段对接标识
"help_description": "openapi_create_help_description", //帮助说明
"authorized_roles": [
"_master"
], //字段修改操作的授权角色
"field_value": [
{
"label": "111", //选项id
"value": "a111", //选项名称
"children": [
{
"label": "2233", //下一级选项id,级联单选,级联多选适用
"value": "a2333" //下一级选项名称,级联单选,级联多选适用
}
]
},
{
"label": "222", //选项id
"value": "a222" //选项名称
}
],
"default_value": [
"a111"
] //默认值
}'