Could someone help me understand how to set up the download tool to do a http POST request to publish a post in Google Chat via webhooks?
I've found this documentation on how to do it in python, and I've tested it that way and it works fine. But I was wondering if there's a way to replicate this setup using the download tool?
I'm passing in a field called JSON which has this string in it:
http_obj.request(uri='url',method='POST',headers={'Content-Type': 'application/json; charset=UTF-8'},body=('test'))
and the URL into the download tool, but I get a 400 bad request response and the following in the DownloadData:
{
"error": {
"code": 400,
"message": "Invalid JSON payload received. Unexpected token.\nhttp_obj.request(uri\n^",
"status": "INVALID_ARGUMENT"
}
}
Config of the download tool shown in the screenshots below.



Thanks in advance