获取工单字段
请求URL:
POST/vcs_api/openapi/getWorkOrderField.php
参数:
参数名 |
是否必须 |
类型 |
说明 |
access |
是 |
string |
公司账号 |
token |
是 |
string |
分配的唯一调用秘钥 |
wot_id |
是 |
int |
工单类型id |
请求示例:
Accept: application/json
Content-Type: application/josn;charset=utf-8
{
"access":"wfys",
"token":"Ihea83YFrBEwPtb4N6f09TvRi5VonWqc",
"wot_id":41
}
返回示例:
{
"info": "获取成功!",
"code": 0,
"data": {
"list": [
{
"name": "address",
"title": "地址",
"type": "char",
"is_required": "2"
},
{
"name": "phone",
"title": "号码",
"type": "char",
"is_required": "2"
},
{
"name": "content",
"title": "工单内容",
"type": "text",
"is_required": "2"
},
{
"name": "file",
"title": "附件",
"type": "file",
"is_required": "2"
},
{
"name": "woxingbie",
"title": "性别",
"type": "select",
"is_required": "2",
"option": {
"男": "男",
"女": "女"
}
}
],
"users": [
{
"uid": "199",
"name": "刘虹"
},
{
"uid": "200",
"name": "李洪辉"
}
]
}
}
返回参数说明:
参数名 |
类型 |
说明 |
code |
string |
返回码,0为正常,非0为请求失败 |
info |
string |
接口请求中文说明 |
data |
array |
返回的数据集 |
∟ list |
array |
字段集 |
∟- name |
string |
字段名称 |
∟ -title |
string |
字段标题 |
∟ -type |
string |
字段类型 |
∟ -is_required |
int |
必填类型 1不必填 2必填 |
∟ -option |
object |
下拉类型select 的选项 |
∟ users |
string |
用户集,在建立工单时作为受理人使用 |
∟ -uid |
int |
用户id |
∟ -name |
string |
用户名称 |
备注: