Set correct Content-Type for custom action by default to application/json Hi,following the custom action guide, I tried to do an outbound HTTP call with a POST request. In the request body I added the corresponding JSON (according to the description in the UI wizard: "Specify the body of your request in JSON format. You can use the selector ({...}) to pass Intercom attribute values in your request body.") like this: {
"ownerEmail": "ash-ketchum@example.com",
"pet":"Pikachu"
} When retrieving the call in my application, I see the following HTTP request coming in:POST /my-endpoint HTTP/1.1
Host: myserver.com
User-Agent: Faraday v0.17.3
Content-Length: 66
Accept: */*
Accept-Encoding: gzip,deflate
Content-Type: application/x-www-form-urlencoded