Hi ,
We're developing a custom trigger connector featuring an array of custom fields, each with a different data type. Our implementation involves looping through this array using FactSet. However, FactSet expects arrays to contain values of a single data type, which poses a challenge since our array comprises values of various data types. We're seeking a solution to ensure compatibility with FactSet's requirements. Any guidance on resolving this issue would be greatly appreciated.
Webhook Response Sample Schema (Inside Body):
{
"name": "Andrew",
"age": "32",
"email": "virat@test.com",
"customFields": [
{
"title": "customfield1",
"value": 100
},
{
"title": "customfield2",
"value": "Shazeb"
},
{
"title": "customfield3",
"value": true
}
],
"url": "https://cacb-103-197-74/sendDetails"
}