我想弄清楚如何在表的字段中搜索关键字并返回匹配的行。即在表格apple
的description
字段中搜索单词。post
https://docs.servicenow.com/bundle/newyork-application-development/page/integrate/inbound-rest/concept/c_TableAPI.html#r_TableAPI-GET
我想弄清楚如何在表的字段中搜索关键字并返回匹配的行。即在表格apple
的description
字段中搜索单词。post
https://docs.servicenow.com/bundle/newyork-application-development/page/integrate/inbound-rest/concept/c_TableAPI.html#r_TableAPI-GET
如果您使用 ServiceNow TABLE API 来获取结果,那么您可以在任何表的任何列上执行以下操作。您需要做的就是在您尝试搜索的列上使用sysparm_query
带有关键字的参数。CONTAINS
例如:
我想获取unable to connect
描述中包含字符串的所有事件。
https://myinstance.service-now.com/api/now/v2/table/incident?sysparm_query=descriptionCONTAINSunable+to+connect
它返回了描述中包含unable to connect
字符串的所有事件记录。