EntitySysType - 查看系统实体
更新时间:2025-10-21
API访问域名
| 请求方式 | GET |
|---|---|
| base url | https://keyue.cloud.baidu.com |
| 后缀接口 | /open/v1/api/v3/entity/sysType |
| Authentication | token为API Key |
说明
用于查看系统实体。
在agent下创建实体时,如果需要引用系统实体,则需要根据本接口返回的系统实体ID进行引用。
请求参数
Header参数
| 名称 | 类型 | 必选 | 中文名 | 说明 |
|---|---|---|---|---|
| Content-Type | string | 是 | 内容类型 | 固定值:application/json |
| token | string | 是 | API KEY | 机器人API KEY。 详细获取方式参考:准备工作 |
| uid | string | 是 | 用户ID | 详细获取方式参考:准备工作 |
| username | string | 是 | 用户名 | 详细获取方式参考:准备工作 |
Parameter参数
无
Body参数
无
响应参数
| 名称 | 类型 | 必填 | 中文名 | 说明 |
|---|---|---|---|---|
| time | integer | 是 | 时间 | 1717036810964 |
| data | object | 是 | 数据 | 数据对象,详见data子数据 |
| code | integer | 是 | 状态码 | 200 |
| msg | string | 是 | 状态信息 | OK |
data 子数据
| 名称 | 类型 | 必填 | 中文名 | 说明 |
|---|---|---|---|---|
| list | array[object] | 是 | 实体列表 | 列表,详见 list 子数据 |
list 子数据
| 名称 | 类型 | 必填 | 中文名 | 说明 |
|---|---|---|---|---|
| name_zh | string | 是 | 实体名称 | 列表 |
| intro | string | 是 | 介绍 | 示例 |
| name | string | 是 | 实体英文名 | 默认自动生成 |
| id | string | 是 | 唯一标识 | |
| support | boolean | 是 | 顺序显示 | 默认为true |
| configurable | boolean | 是 | 可否配置 | |
| standardizedIntro | string | 是 | 标准示例 |
请求示例
Bash
1curl --location --request GET 'https://keyue.cloud.baidu.com/open/v1/api/v3/entity/sysType' \
2--header 'token: 672bb3bb-c091-484b-beac-e393cfa35d56'
响应示例
1{
2 "time": 1735020974473,
3 "data": {
4 "list": [
5 {
6 "name_zh": "数字编号",
7 "intro": "023567,零23五67(适用于订单编号、客户编号等信息)",
8 "name": "数字编号",
9 "id": "656d365b-5335-41f0-bafb-e6f6ada0ac69",
10 "support": true,
11 "configurable": false,
12 "standardizedIntro": "023567"
13 },
14 {
15 "name_zh": "数值",
16 "intro": "1,一个,一(适用于人数、天数等数值信息)",
17 "name": "数值",
18 "id": "dfsdfsd32-3ds23fdsfdf-444sdfsfsdfs",
19 "support": true,
20 "configurable": false,
21 "standardizedIntro": "1"
22 },
23 {
24 "name_zh": "人名",
25 "intro": "贝克汉姆,姚明",
26 "name": "人名",
27 "id": "fdsfs13424-2342fdsfsd-f4353fdfds",
28 "support": true,
29 "configurable": true,
30 "standardizedIntro": "贝克汉姆"
31 },
32 {
33 "name_zh": "身份证号",
34 "intro": "120101200001012345,12010120000101234x",
35 "name": "身份证号",
36 "id": "sdasdsad-a343-dfsfsdfdsf4232",
37 "support": true,
38 "configurable": false,
39 "standardizedIntro": "120101200001012000"
40 },
41 {
42 "name_zh": "手机号码",
43 "intro": "13333333333,壹3333333333",
44 "name": "手机号码",
45 "id": "asdads2232-dfsf33434343-fdsfds45454",
46 "support": true,
47 "configurable": true,
48 "standardizedIntro": "13333333333"
49 },
50 {
51 "name_zh": "电子邮箱",
52 "intro": "11232@baidu.com",
53 "name": "电子邮箱",
54 "id": "e342refwfsdfs-34sdfsdfsdf34r-34efsdfdsfsd",
55 "support": true,
56 "configurable": true,
57 "standardizedIntro": "11232@baidu.com"
58 },
59 {
60 "name_zh": "QQ",
61 "intro": "851960947",
62 "name": "QQ",
63 "id": "f205915d-aef1-43e9-a676-6967ef2a0122",
64 "support": true,
65 "configurable": true,
66 "standardizedIntro": "851960947"
67 },
68 {
69 "name_zh": "IP",
70 "intro": "10.10.2.3",
71 "name": "IP",
72 "id": "25d48a75-1f6c-442d-84c4-a37ad31d2b7e",
73 "support": true,
74 "configurable": false,
75 "standardizedIntro": "10.10.2.3"
76 },
77 {
78 "name_zh": "URL",
79 "intro": "https://www.baidu.com/",
80 "name": "URL",
81 "id": "ba4d9e56-f6b9-4cc2-9893-464b6e9dfdfa",
82 "support": true,
83 "configurable": true,
84 "standardizedIntro": "https://www.baidu.com/"
85 },
86 {
87 "name_zh": "金额范围",
88 "intro": "五六百,4000到5000,1万左右",
89 "name": "金额范围",
90 "id": "05dc9f87-5e4d-408b-a75d-2894eac69f14",
91 "support": true,
92 "configurable": false,
93 "standardizedIntro": "500.00元 ~ 600.00元;4000.00元 ~ 5000.00元;8000.00元 ~ 12000.00元;"
94 },
95 {
96 "name_zh": "微信",
97 "intro": "aa12345",
98 "name": "微信",
99 "id": "fahjkfbakbfakf-232dcsfds-3443fdsd",
100 "support": true,
101 "configurable": true,
102 "standardizedIntro": "aa12345"
103 },
104 {
105 "name_zh": "时间",
106 "intro": "2017-10-01 10:22:30,下周五下午三点,明天上午九点半",
107 "name": "时间",
108 "id": "ewr23fdsfsdf-23rfdsfds-f443343",
109 "support": true,
110 "configurable": false,
111 "standardizedIntro": "2017-10-01 10:22:30"
112 },
113 {
114 "name_zh": "时间范围",
115 "intro": "2018年1月1日到2018-10-01,昨天到前天,2019年8月10日七点50分到2019年10月8日",
116 "name": "时间范围",
117 "id": "22764ce5-1b79-4a61-9864-3369f452c756",
118 "support": true,
119 "configurable": false,
120 "standardizedIntro": "2018-01-01 00:00:00 ~ 2018-10-01 23:59:59"
121 },
122 {
123 "name_zh": "日期集合",
124 "intro": "2018年2月到2018年3月每月5号6号,11月3号4号5号",
125 "name": "日期集合",
126 "id": "b1a4e398-26e4-4b6c-8e8b-7a2c7871845b",
127 "support": true,
128 "configurable": false,
129 "standardizedIntro": "2018-02-05,2018-02-06,2018-03-05,2018-03-06"
130 },
131 {
132 "name_zh": "日期",
133 "intro": "2017-10-01,下周五,明天,后天上午,明年五月一号",
134 "name": "日期",
135 "id": "2341234-erefd-23243-gfdfd",
136 "support": true,
137 "configurable": false,
138 "standardizedIntro": "2017-10-01"
139 },
140 {
141 "name_zh": "月",
142 "intro": "2017年11月,下个月,明年二月,上上个月",
143 "name": "月",
144 "id": "23bd7c14-da39-11e7-ae5d-6c92bf468bea",
145 "support": true,
146 "configurable": false,
147 "standardizedIntro": "2017-11"
148 },
149 {
150 "name_zh": "年",
151 "intro": "2017年,去年,明年,前年,2018年",
152 "name": "年",
153 "id": "23bd91bb-da39-11e7-ae5d-6c92bf468bea",
154 "support": true,
155 "configurable": false,
156 "standardizedIntro": "2017"
157 },
158 {
159 "name_zh": "地点",
160 "intro": "颐和园,中关村,海淀,北京,中国",
161 "name": "地点",
162 "id": "dfsf23fdfsdf2-23fdsfsd-f23dsfdsfsd",
163 "support": true,
164 "configurable": false,
165 "standardizedIntro": "颐和园"
166 },
167 {
168 "name_zh": "国家",
169 "intro": "中国",
170 "name": "国家",
171 "id": "5cd0fcd8-8ffd-4ebb-bc38-5903fce4c164",
172 "support": true,
173 "configurable": false,
174 "standardizedIntro": "中国"
175 },
176 {
177 "name_zh": "省份",
178 "intro": "辽宁",
179 "name": "省份",
180 "id": "688460a3-c541-4fee-a2a4-83cff3648da2",
181 "support": true,
182 "configurable": false,
183 "standardizedIntro": "辽宁省"
184 },
185 {
186 "name_zh": "城市",
187 "intro": "北京",
188 "name": "城市",
189 "id": "13a5afb5-b172-4257-8c3b-09a2b563c211",
190 "support": true,
191 "configurable": false,
192 "standardizedIntro": "北京市"
193 },
194 {
195 "name_zh": "区县",
196 "intro": "海淀",
197 "name": "区县",
198 "id": "99073ed2-46a8-42b0-bdb2-79db02c37979",
199 "support": true,
200 "configurable": false,
201 "standardizedIntro": "北京市海淀区"
202 },
203 {
204 "name_zh": "详细地址",
205 "intro": "北京市海淀区西北旺东路10号院百度科技园3号楼",
206 "name": "详细地址",
207 "id": "5025c2f4-70d7-5794-aee6-5a3ea250f887",
208 "support": true,
209 "configurable": false,
210 "standardizedIntro": "北京市海淀区西北旺东路10号院百度科技园3号楼"
211 },
212 {
213 "name_zh": "航班号",
214 "intro": "HU7611,CZ3129,HU7605",
215 "name": "航班号",
216 "id": "600c62cd-1aca-4ea7-a992-6696ae1fda3d",
217 "support": true,
218 "configurable": true,
219 "standardizedIntro": "HU7611"
220 },
221 {
222 "name_zh": "航班座位号",
223 "intro": "A11,13B",
224 "name": "航班座位号",
225 "id": "a16b0707-8e79-4cf3-a6a8-f988f91c3dd4",
226 "support": true,
227 "configurable": true,
228 "standardizedIntro": "A11"
229 },
230 {
231 "name_zh": "机场地点",
232 "intro": "北京,阿什哈巴德,大马士革",
233 "name": "机场地点",
234 "id": "cda4cb93-2c1c-466e-9973-4678cf442a97",
235 "support": true,
236 "configurable": false,
237 "standardizedIntro": "北京市"
238 },
239 {
240 "name_zh": "机场",
241 "intro": "北京首都机场",
242 "name": "机场",
243 "id": "6e18565c-6cd7-48f5-938e-3f278696b828",
244 "support": true,
245 "configurable": false,
246 "standardizedIntro": "北京首都国际机场"
247 }
248 ]
249 },
250 "code": 200,
251 "msg": "OK"
252}
1{
2 "msg": "API Key 为空,请填写机器人对应的API Key",
3 "tip": "",
4 "code": 4008651,
5 "requestId": "3aac7ee097e240a18f5802b9cde1cd25"
6}
