Hello,
I am building a custom connector for an application. One of the POST endpoint requires a JSON body as
{
"itemData": {
"Name": "string",
"Priority": "High",
"SpecificContent": {
"additionalProp1": {},
"additionalProp2": {},
"additionalProp3": {}
},
"DeferDate": "2021-07-28T13:07:46.546Z",
"DueDate": "2021-07-28T13:07:46.546Z",
"RiskSlaDate": "2021-07-28T13:07:46.546Z",
"Reference": "string",
"Progress": "string"
}
}
When i import from a sample, All parameters are recognized and added to the parameters except SpecificContent which is a JSON object and dynamic. How do i make this as one of the input field to accept JSON from the user?
Thanks