Modifying the Content-Type for Webhook Integration for log streaming

Hi team! :wave:

For log Streaming setup, is it possible to modify Content-Type header in the POST request it makes? Either as another option within the drop down menu, or the ability to freeform edit the values?

I’m trying to stream Auth0 logs to a log analytics platform, but the platform’s endpoint requires charset to be set for a valid request:

'Content-Type: application/json; charset=utf-8'

Whereas the POST requests emitted by Auth0 contains this within the request header:

"content-type": "application/json",

On the webhook health page, this is the message seen on Auth0:

{
  "date": "############",
  "logsDelivered": 0,
  "status": "error",
  "startingCursor": "#####################################################",
  "endingCursor": "#####################################################",
  "error": {
    "code": "415",
    "message": "Unsupported Media Type",
    "details": "{\"error\":{\"code\":415,\"message\":\"Empty or invalid request header Content-Type.\"}}"
  }
}

Thanks!