I am writing a REST server application which has an endpoint /weldlabel and expects a parameter named label
I am testing the server with a web browser and can see the endpoint request event being triggered if I don't have any parameter
eg.
http://localhost:8080/weblabel
when I add a parameter such as
http://localhost:8080/weblabel&label=1234
then the endpoint request event doesn't get triggered.
What text should I enter in the web browser to simulate a parameter and value for the endpoint ?