用户管理 (v3)
SDP API 获取某个支持组内的所有技术员
页面调用: 参数: { "list_info": { "sort_field": "name", "start_index": 1, "sort_order": "asc", "row_count": "25", "get_total_count": true, "search_criteria": [ { "field": "support_group.name", "condition": "is", "values": [ "Network" ] } ] } }
用户管理API字段详细信息表
附表 属性名 类型 details 描述 id long Unique user identity 用户在数据库中存储的唯一的标识 first_name String First name of the user 名 middle_name String Middle name of the user 中间名 last_name String Last name of the user 姓 name String Name of the user 显示名 ciid long CI Id of ...
删除一个用户信息
API调用URL地址 http://<serverName>:<portNumber>/api/v3/users/<user_id> 其中<user_id>为被删除用户的id 示例:http://localhost:8080/api/v3/users/1809 请求参数 HTTP方法:DELETE 参数名 值 位置 authtoken <API Key> header 响应示例 { "response_status": { "status_code": 2000, ...
修改一个用户信息
API调用URL地址 http://<serverName>:<portNumber>/api/v3/users/<user_id> 其中<user_id>为被修改用户的id 示例:http://localhost:8080/api/v3/users/1809 请求参数 HTTP方法:PUT 参数名 值 位置 input_data <JSON_String> body authtoken <API Key> header 输入示例 { "user":{ ...
添加一个用户信息
API调用URL地址 http://<serverName>:<portNumber>/api/v3/users 示例:http://localhost:8080/api/v3/users 请求参数 方法:POST 请求参数 参数名 值 位置 Input_data <JSON_String> body authtoken <API Key> header 输入示例 { "user":{ "first_name":"Peter233", ...
查询一个用户信息
API调用URL地址 http://<serverName>:<portNumber>/api/v3/users/<user_id> 其中<user_id>为被查询信息用户的id 示例:http://localhost:8080/api/v3/users/4 请求参数 HTTP方法:GET 参数名 值 位置 authtoken <API Key> header 响应示例 { "response_status": { "status_code": 2000, ...
查询所有用户的信息
API调用URL地址 http://<serverName>:<portNumber>/api/v3/users 其中<serverName>:<portNumber>替换为您的环境下SDP所在的主机IP和对应端口 示例:http://localhost:8080/api/v3/users 请求参数 方法:GET 参数名 值 位置 Input_data <JSON_String> URL路径 authtoken <API Key> header <JSON_String>输入示例: ...