Hi
jasmeet13Why are you trying to use curl here?
Curl is a bunch of libraries that support publishing messages via commandline....similar to wget.
So curl syntax is something like:
curl [options ]URL
so in the request bar where you have your curl request, you need to replace this with the protocol://ip address/templateParameters?queryParameters
I cant tell you what parameters you should have in your request nor the content of the request payload if your request has one (POST method supports injecting a payload, but its not mandatory). However when i have used curl before the options on my request equated to http header parameters. Further evidence of this is your format=xml option. On a REST request i would represent this by populating the 'Mediatype' dropdown with 'application/xml' which when the request is submitted generates a 'Content-Type' http header specifying the datatype of xml.
You definitely dont need to use curl in the address of your request, but i dont know what the requirements for your URI string is....you need to check the requirements to determine what the requests full URL is, along with required header parameters and the payload if you have one.
To provide a bit of clarity (i know the above text is a bit confusing).
After youve submitted your request if you check the RAW tab of your request i would expect the first line in the request to look similar to the following:
POST
http://192.168.63.173/upgradeoverride HTTP 1.1
Hope this helps,
Rich