Orchestrator HTTP Request problem

Good day!

I have a problem with api request. Im use “Orchestrator HTTP Request” activity. I have successfully logged in and got information about triggers but I need to get a trigger in which a certain machine is specified “test.mashine”

inside json responce it looks like this: “MachineRobots":[{"MachineName”:"test.mashine",…}]

i try responce like this – "/odata/ProcessSchedules?$filter=MachineRobots(‘MachineName’) eq ‘test.mashine’ but it dont work.

How i can get all triggers with “test.mashine” mashine name ?

Hi @Arettu63

Can you try this way

“/odata/ProcessSchedules?$expand=MachineRobots($filter=MachineName eq ‘test.mashine’)”

Hi

Try mentioning like this

/odata/ProcessSchedules?$filter=MachineRobots/any(x: x/MachineName eq ‘test.mashine’)

It will be GET method
@Arettu63

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.