Workfront document folderID | Community
Skip to main content
New Participant
September 3, 2025
Question

Workfront document folderID

  • September 3, 2025
  • 1 reply
  • 290 views

Hi!

 

Could one of you help us solve our challege below?

 

Challenge
As a Fusion admin I like to start a workflow only if documents are uploaded in a certain sub-folder. This subfolder is created on the project template and contains a template folder ID that can be retrieved easily. However, this template folder ID (or for that matter the folder ID in general), is not stored on the document information and cannot be extracted in the document information outputs.

Background
We want to create an automated process that trigger is assets are uploaded in bulk to a specific folder in the project. Once uploaded to that specific folder, the files are moved to a document folder on sub-task level based on the naming convention of the file.

Ask
Is there a way to retrieve the folder information of the location where the file is uploaded? Such that this ID can be matched to the folder template ID from the project template?

1 reply

IvanBebek-iX
New Participant
September 10, 2025

Hi @robst,

 

In this case you have two possibilities either process each asset as it is uploaded, have a watch event on documents where you have certain project id = takes all uploaded documents 1 by 1, or have a script that would run every hour or day or whatever frequency you would need.

 

For the first option you can configure that only documents are fetched if they are uploaded to certain project and then based on naming/folder location move it to the designated task/sub-task, to do this you can search for the details of uploaded document, turn on advanced settings and search the collections for folder details where the document is uploaded to.

   

 

Second option where you process this in certain intervals is to query the project documents, and check their folders attribute directly, please refer to the screenshot bellow, using this option you get same data as above.

 

As to why different approaches, in the first case you always have to take details for each document and on every upload, imagine bulk update of 1k assets, it would create a lot of operations, with the second approach you have the flexibility to get all of the data at once and then do the processing, but the solution depends on the requirements like processing time etc..

 

Hopefully this was helpful. If you have any further questions please reach out.

 

Best regards,
Ivan Bebek

RobStAuthor
New Participant
September 24, 2025

Hi @ivanbebek-ix,

 

Thanks a lot for your response. Appreciated! We will investigate if these solve our specific use case. I expect to get back to you somewhere next week. Thx again!

 

cc. @ncorver 

 

KIMBERLYREA
New Participant
September 24, 2025

This is similar to what we do.  We have a Watch Documents Event and it searches for projects in a specific group ID. We then pull the project data including the document detail and folders. 



Then it only passes through if the document is in the specific folder we identify.