Hi,
I'm trying to send a simple JSON via HTTP "PUT" command, but keep getting the following error:
Solved! Go to Solution.
Hello @joe_hannes_col !
Thanks for the reply, but I just actually found a "workaround" to this with my colleague.
We used POST instead of PUT and used the webhook to get things working:
Data is taken from chat bot working on our ms teams (objects are in Finnish)
Seems like this HTTP tool doesn't support form-data as it is?
Hello @Anonymous,
I think the body of your request should contain
{"company": "Test Company"}
The rest, like Content-Type, Content-Dispostion etc. should go into the headers.
Hello @joe_hannes_col !
Thanks for the reply, but I just actually found a "workaround" to this with my colleague.
We used POST instead of PUT and used the webhook to get things working:
Data is taken from chat bot working on our ms teams (objects are in Finnish)
Seems like this HTTP tool doesn't support form-data as it is?
Great you made it work, @Anonymous!
I'm not aware of any limitations regarding the use of form-data, but my requests have always been in JSON so far 🙂