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