i need to send json payload to a given URL usin web/http protocol. I have a web url and a payload only.
how do i send the request ?
Thanks a lot in advance
pushpak
i need to send json payload to a given URL usin web/http protocol. I have a web url and a payload only.
how do i send the request ?
Thanks a lot in advance
pushpak
Something like this to send login credentials to myUrl:
web_custom_request("myUrl",
"URL=http://myUrl.com",
"Method=POST",
"RecContentType=application/json",
"Body="
"{"
"\"name\":\"myName\"m\,"
"\"password\":\"myPassword\""
"}"
LAST);
Have you recorded the JSON conversation with VUGEN to see what it looks like?