Forum Discussion
jamos
Aug 25, 2025Copper Contributor
Codeless Connect Framework (CCF) Template Help
As the title suggests, I'm trying to finalize the template for a Sentinel Data Connector that utilizes the CCF. Unfortunately, I'm getting hung up on some parameter related issues with the polling c...
pradejain
Aug 25, 2025Iron Contributor
Hi jamos​ The most reliable way to fix this issue is to remove the queryParameters section and manually build the query string directly within the request.apiEndpoint attribute. This method allows for both repeated parameter names and proper variable substitution.
"pollingConfig": {
"request": {
"apiEndpoint": "../path/to/api/myEndpoint?EventDates={_QueryWindowStartTime}&EventDates={_QueryWindowEndTime}&PageSize=200",
"httpMethod": "GET"
},
...
}
This configuration ensures the CCF correctly creates a URL with two EventDates parameters, each containing the appropriate time value from the polling window.