Push data to http requet

Hello everyone
I am new to node red. I am looking for a way to send my payload in an http request

address = http://192.168.2.160/solar?victronconsobat=
paylod = (example 1966)

so I want my http request to be http://192.168.2.160/solar?victronconsobat=1966

Thank you for your help


This is all documented in the sidebar help text (highlight the node and select the book icon in sidebar) for the node.
Enter http://192.168.2.160/solar?victronconsobat={{payload}} in the url field. Or construct the url prior with a template node the same way, and output the value in msg.url.

Just also noting that requests can use different methods.

Looks like the method you need in this case is a GET method.