json postdata (wodHttpDLX)
Hi.
You cannot send JSON (or any other value) like that, not through Headers.Add.
It's sufficient to set
[inlinecode]Request.Headers("Content-type").Value = "application/json"[/inlinecode]
and then in
[inlinecode]Request.Body = your_json[/inlinecode]
with formatted JSON.
I hope this helps.
Jasmine