Hi all, I am trying Airbyte connector builder UI ...
# help-connector-development
c
Hi all, I am trying Airbyte connector builder UI to add an additional stream for wrike connector. Base URL: https://www.wrike.com/api/ Method: GET /folders https://www.wrike.com/api/v4/folders is working fine. The response returns multiple records along with a record named childIds as an array of values eg:
Copy code
"childIds": [
      "IEXX6MLXXXXXX",
      "IEXX6MLXXXXXX"
    ]
The stream that I am trying to add is Method: GET /folders/{folderId},{folderId},... - up to 100 IDs where folderId is the childId Kindly let me know how to convert the childIds array into individual elements so that it can be passed into the request and get the response
k
A message from kapa.ai
Hmm, I don't know enough to give you a confident answer yet. However, you can refer to the Airbyte documentation on [Connector Builder UI](https://docs.airbyte.com/connector-development/connector-builder-ui/overview) and [Partitioning](https://docs.airbyte.com/connector-development/connector-builder-ui/partitioning) for more information on how to work with the connector builder UI and handle different types of data.
c
I tried the partioning with the parent stream as folders and the parent key as childIds but getting an error
Copy code
<https://www.wrike.com/api/v4/folders/%5B'IEXX6MLXXXXXX',%20'IEXX6MLXXXXXX'%5D>,
Any suggestion on this will help me a lot. Thanks
j
Can you share your manifest for the cofig with partitioning and parent stream? This looks almost right