Skip to main content
Michel L
September 30, 2025
Solved

Trashed folder still appears using Search Folder EndPoint

  • September 30, 2025
  • 5 replies
  • 110 views

When you move folder to the trashwith the Lucidchart command “Move to trash”, you find it in the trash folder.

If you empty the trash folder, the folder is not visible anymore but in fact it is still there because if you use the end point “https://api.lucid.co/folders/search” the deleted folders are retrieved.

How could we really delete folders?

Best regards.

Best answer by Zuzia S

Hi ​@Michel L, thank you so much for your patience here! 

The fix has been released and the API should not be returning any data about the deleted folders at this point. 

Let me know if you have any questions or further concerns. Cheers!

Comments

Lucid product team
September 30, 2025

Hi Michel, I'm currently looking into this for you with our internal teams. I'll get back to you with an update as soon as I have a response.

Lucid product team
September 30, 2025

Hi Michel! Thank you for pointing this out! We are working on a change to our systems to delete folders from our search table. When released, the API will not return any data about the folder (because the data won't be there). I’ll respond on this thread when that change is live.

Michel L
Michel LAuthor
October 1, 2025

Thanks for the reply.

For now I’m filtering the result of the deserialized json response with one line of code

const folders = deserializedFolders.filter(f => f.trashed == "null");

Regards.

Michel L
Michel LAuthor
October 1, 2025

Sorry forget the double quote on “null”

const folders = deserializedFolders.filter(f => f.trashed == null);

 

Zuzia S
Zuzia SAnswer
Lucid community team
November 27, 2025

Hi ​@Michel L, thank you so much for your patience here! 

The fix has been released and the API should not be returning any data about the deleted folders at this point. 

Let me know if you have any questions or further concerns. Cheers!