Expand my Community achievements bar.

Submissions are now open for the 2026 Adobe Experience Maker Awards.
SOLVED

Auto-locking a proof when deadline is met

Avatar

Level 3

Hi,

 

I am trying to set up an automation that auto-locks a proof as soon as the set deadline is met to enforce users to not enter feedback after the deadline is up.

The challenge is that I cannot do it via a regular workflow since the approvers are so different every time and a Fusion API call cannot be used for the entire instance since this should really be set up for only proofs created by our team and not other teams who are using the instance. Any workarounds or recommendations?

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Level 3

Yes,

 

This is the solution to this:
Module: Workfront Proof -> API call
The API call is based on the library: https://api.proofhq.com/home/proofs/lockproof.html
In the Method field you type lockProof
and in the Body (XML) you put<FileID>6.file_id</FileID> 
(file ID number of course depends on your scenario)
Thanks for the help!

View solution in original post

4 Replies

Avatar

Level 3

I set it up in Fusion like this, but there is a timeout, even though I filtered it by only me as a user. Any ideas?

Avatar

Level 5

Hi @TraKill ,

 

Your first module won't achieve the outcome you are expecting. Maybe your first module should be "watch proof activity", then add a filter for your team and the proof activity being a reminder or deadline passing (if available), then I think your second module should be a custom api call to lock the proof with below code in the body - 

{

"locked": true

}

Avatar

Administrator

@TraKill Just checking in — were you able to resolve your issue? We’d love to hear how things worked out. If the suggestions above helped, marking a response as correct can guide others with similar questions. And if you found another solution, feel free to share it — your insights could really benefit the community. Thanks again for being part of the conversation!



Kautuk Sahni

Avatar

Correct answer by
Level 3

Yes,

 

This is the solution to this:
Module: Workfront Proof -> API call
The API call is based on the library: https://api.proofhq.com/home/proofs/lockproof.html
In the Method field you type lockProof
and in the Body (XML) you put<FileID>6.file_id</FileID> 
(file ID number of course depends on your scenario)
Thanks for the help!