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

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

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

(proxy.pathsuffix MatchesPath “/employee/{employeeid}/manager”) and (request.verb = “GET”)

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