This content has been marked as final.
Show 2 replies
-
1. Re: how to make POST request via invokeHttp()
asmigala Feb 14, 2017 6:03 AM (in response to javedkhan)1 of 1 people found this helpfulHi, you can set the action parameter in the invokeHttp procedure to 'POST' and set the payload using the request parameter like this:
call invokeHttp(action=>'POST', request=>'testdata')
Running the above query results in the following request: https://requestb.in/tfyysktf?inspect#140w22
See the docs for more details.
-
2. Re: how to make POST request via invokeHttp()
javedkhan Feb 14, 2017 10:19 PM (in response to asmigala)Thanks alot Andrej Smigala! , it works perfectly.