curl --location -g --request GET 'https://dev.worktile.com/open-api/mission/project-templates/{{template_id}}/properties?access_token={tenant_access_token}'[
{
"name": "项目名称", // 属性名称
"property_id": "name", // 属性id
"is_required": 1, // 是否必填
"is_system": 1, // 是否为系统属性,1 系统属性, 0 扩展属性
/**
* 属性类型
* 1:单行文本
* 2:多行文本
* 3:数字
* 4:日期
* 5:日期区间
* 6:单选
* 9:成员
* 10:成员组
* 14:状态
* 19:附件
* 22:多选
*/
"type": 1
},
{
"name": "可见范围",
"property_id": "visibility",
"is_required": 1,
"is_system": 1,
"type": 6,
"addition": {
"items": [ // 属性可选项
{
"_id": "1",
"text": "公开"
},
{
"_id": "2",
"text": "私有"
}
]
}
},
{
"name": "项目类型",
"property_id": "6926c4eaa9f8809b53798030",
"is_required": 1,
"is_system": 0,
"type": 6,
"addition": {
"items": [
{
"_id": "5f460f60e505f7139d724a62",
"text": "外部项目"
},
{
"_id": "5f460f60e505f7139d724a63",
"text": "内部项目"
}
]
}
}
]