Is it possible to return the target value (Computer ID/ Customer Relevance) by relevance query? We are currently working with the following REST call:
https://hostname/api/query?relevance=(id of it, name of it, state of it) of bes actions whose (name of it starts with "PP_" and state of it is "Open")
That gets us a snippet of the following response:
<Answer type="integer">2050668</Answer>
<Answer type="string">PP_Testing: (1/6)</Answer>
<Answer type="string">Open</Answer>
We are having to then issue an additional query using the Action ID returned to run:
https://hostname/api/action/2050668
Which returns all the specifics about that action including what we desire “Target”
As we understand it, the target can come in the form of a “ComputerID” or “CustomRelevance”. Was curious if there was an easier way from the first request to list the actions following a naming scheme and obtain the targets of those actions?