I am using <https.post> in a UE script to send alo...
# suitescript
j
I am using https.post in a UE script to send along some data to an external URL. If I log the https.post, I'm getting the response back from the external URL but how do I log what I am sending out? I'd like to see all of the headers and params, etc.
b
post to an echo service like httpbin.org instead
j
Thank you! I'll try that.
Do you know if there are any instructions for this site? I want to be able to see specifically what netsuite is sending out from the customer record.
b
make the post to http://httpbin.org/post
log the response body
j
Got it. Thanks again!