How to have HTTP-IN Node Functionality But URL Setting Not Static?

How to have HTTP-IN Node Functionality But URL Setting Not Static?

Understanding that you need http-in -> Some Task -> http-response as the flow sequence, how does one minic the http-in node but allowing specification of the URL parameter as dynamic value?

Can you give a couple of examples of what the url should look like please?

/base/:path1/:path2 -- that's the supports /base/two/three, /base/five/six, ....

msg.req.params.path1 is set along with msg.req.params.path2

is that what you're looking for?

[{"id":"4419fa1d85ee35b1","type":"http in","z":"9a81529914745607","name":"","url":"/base/:path1/:path3","method":"get","upload":false,"skipBodyParsing":false,"swaggerDoc":"","x":303.75,"y":827.5,"wires":[["e06cf12fdcb1023d","6d7ad01fe0f728f2"]]},{"id":"e06cf12fdcb1023d","type":"http response","z":"9a81529914745607","name":"","statusCode":"","headers":{},"x":771.25,"y":710,"wires":[]},{"id":"6d7ad01fe0f728f2","type":"debug","z":"9a81529914745607","name":"debug 6","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":787.5,"y":943.75,"wires":[]}]

If you mean Ip is static and you want a dynamic url path, then it is noted in the nodes sidebar help text, as @gregorius has shown.

The node will listen on the configured path for requests of a particular type. The path can be fully specified, such as /user, or include named parameters that accept any value, such as /user/:name. When named parameters are used, their actual value in a request can be accessed under msg.req.params.

Not mentioned in the help, you can set the named parameters as optional using th ?
e.g. /user/:name?.