Skip to main content
Question

How can we add a card to the child folder?

  • November 1, 2024
  • 1 reply
  • 46 views

Example:
Folder 1 (parent)
Folder 2(child)

we have to create a card and add it to the Folder 2.

how can we change the folder for already existing cards?

1 reply

Kian Volk
Community Manager
  • Community Manager
  • November 1, 2024

Hi Oleksii,

You can POST to the /folders/{folderId}/action endpoint with this payload:

{
"actionType": "add",
"folderEntries": [
{
"cardId": source_card_id,
"entryType": "card"
}
],
"prevSiblingItemId": "first"
}

Hope this helps! Let me know if you have any additional questions.