I'm really struggling with a custom connection for Flow I've created due to the "object" type required by a customer. I validated their swagger file.
Below is the particular "object" type in question:
"customFields": {
"type": "object",
"additionalProperties": {
"type": "object"
}
If I send in the PUT the following: customFields: { "22570" : "TEST"}
Then Flow adds double quotes before and after my brackets like so: customFields: "{ "22570" : "TEST"}"
Anyone have any thoughts on how I can get Flow to stop adding the double quotes?
Thanks in advance for any help someone can give me.