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