How do I build the Rest API proxy with variable parameters ex: http://abc.com/employee/{employeeid}/manager

Not applicable

How do I build the Rest API proxy with variable parameters ex: http://abc.com/employee/{employeeid}/manager

Solved Solved
0 1 369
1 ACCEPTED SOLUTION

Not applicable

You would create conditional flow(s). Each flow would have a condition like

<Condition>(proxy.pathsuffix MatchesPath "/employee/{employeeid}/manager") and (request.verb = "GET")</Condition>

You also need to define a corresponding Resource with Path as /employee/{employeeid}/manager

View solution in original post

1 REPLY 1

Not applicable

You would create conditional flow(s). Each flow would have a condition like

<Condition>(proxy.pathsuffix MatchesPath "/employee/{employeeid}/manager") and (request.verb = "GET")</Condition>

You also need to define a corresponding Resource with Path as /employee/{employeeid}/manager