POST Request Data Resource

I’ve been trying to set up data connections for esi.evetech.net for use in my app. The GET connections work well, but I can’t get seem to get a POST request to go through. I beleive the issue is the format of the data in the body but I’m not 100% sure on that.

This is what I’m trying to do: curl -X POST “https://esi.evetech.net/latest/universe/ids/?datasource=tranquility&language=en” -H “accept: application/json” -H “Accept-Language: en” -H “Content-Type: application/json” -H “Cache-Control: no-cache” -d “[ "CCP Zoetrope"]”

This is what my configuration looks like:






What am I doing wrong??

I was able to see the format of the data being passed to the API in the formula editor.
It looks like this: {names: [“CCP Zoetrope”, “Aura Emrayur”]}
that returns an error of : {
“error”: “too few items for ‘names’, ‘names’ is required”
}

I need the data passed in the header to look like this: [“CCP Zoetrope”, “Aura Emrayur”]

How do I do that? I tried to just delete the names property but it’s required…