Hi Davi
After discussing with your colleague on the live chat, here is what you need to do for a request where the response will be gzip.
The gzip:true option is not documented anywhere, which is why I was pulling my hair out!!
I have also added headers, although not sure if needed.
Many thanks to your colleague for saving my sanity!!
```
Parse.Cloud.httpRequest({
headers: {
'Content-Type': 'application/xml',
'Accept-Encoding': 'gzip, deflate'
},
gzip:true,
success: function (httpResponse) {
...
},
error: function (httpResponse) {
...
```