Hi everyone, I am building a connector using the l...
# help-connector-development
t
Hi everyone, I am building a connector using the low-code approach. I am wondering how I can define selection options for a stream. For example: the Salesforce connector shows you the available tables to select which one you want to sync. I currently have a configuration that requires a module_id, view_id and so on. Instead, I would like to specify that the
/modules/{module_id}/data
stream offers you a selection of modules provided by
/modules
. Is that even supported by the low-code CDK or would I need to switch to the Python CDK?
s
if i understand correctly you’re asking if the low-code CDK can be used to dynamically determine what the available streams/endpoints are for syncing, right? at the moment that’s not available unfortunately and you’d need to use the Python CDK
thanks 1
t
I think your description is correct. In the same way the Salesforce connector let’s you select from existing tables that it gets by querying Salesforce first, I want to get a list of modules from the /modules endpoint and the selected ones should then dynamically create /modules/$id/data streams where $id is a value provided by the former selection. Could you tell me the name of that feature or point me to the Python CDK documentation for it? Thanks!
s