如何使用Table API搜索

时间:2019-08-26 21:02:32

标签: servicenow servicenow-rest-api

我想弄清楚如何在表的字段中搜索关键字并返回匹配的行。即在apple表的description字段中搜索单词post

https://docs.servicenow.com/bundle/newyork-application-development/page/integrate/inbound-rest/concept/c_TableAPI.html#r_TableAPI-GET

1 个答案:

答案 0 :(得分:1)

如果使用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字符串的事件记录。

enter image description here