什么是 Servicenow SOAP API getkeys 通配符?

What are Servicenow SOAP API getkeys wildcards?

我想使用 SOAP 请求获取 servicenow table 中项目的列表,这些项目的描述以 "TEST".

开头

我可以发送一个简单的 getKeys 请求。例如下面的成功返回给我一张票的sys_id:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hr="http://www.service-now.com/hr_case">
   <soapenv:Header/>
   <soapenv:Body>
      <hr:getKeys>
         <short_description>TEST Soap 1</short_description>
      </hr:getKeys>
   </soapenv:Body>
</soapenv:Envelope>

我应该如何修改上述请求,以便它 returns 键所有描述以 "TEST" 开头的项目?

我使用了 URI 为 REST 的网络服务:

https://???.service-now.com/api/now/table/hr_case?sysparm_query=short_descriptionSTARTSWITHTEST

之前我试过这样的 URI:

https://???.service-now.com/api/now/table/hr_case?&short_description=TEST Soap 1