Custom-Property
更新时间:2019-06-14
筛选
接口描述
相对URI | HTTP 方式 |
---|---|
/v1/custom-field | GET |
请求示例
GET /v1/custom-field
输出示例
{
"fields":[
"prop1",
"prop2",
"prop3"
]
}
添加
接口描述
相对URI | HTTP 方式 |
---|---|
/v1/custom-field | POST |
输入
名称 | 类型 | 是否必选 | 默认值 | 参数位置 | 说明 |
---|---|---|---|---|---|
name | String | Y | body json | 自定义属性名称 |
请求示例
{
"name":"test"
}
输出示例
{
"sucess":"true"
}
删除
接口描述
相对URI | HTTP 方式 |
---|---|
/v1/custom-field/delete | PUT |
输入
名称 | 类型 | 是否必选 | 默认值 | 参数位置 | 说明 |
---|---|---|---|---|---|
name | String | Y | body json | 自定义属性名称 |
请求示例
{
"name":"test"
}
输出
{
"sucess":"true"
}