Add Combined Proof into a Project using Fusion | Community
Skip to main content
KristyAnn
Level 2
March 6, 2026
Solved

Add Combined Proof into a Project using Fusion

  • March 6, 2026
  • 2 replies
  • 50 views

I am looking for the endpoint to use to bring the existing ProofHQ combined proof into the project in Workfront. I am creating the proof successfully but not having any luck adding it into the project via Fusion.

Best answer by Ryan_T

@KristyAnn - are you using an API endpoint to create a Combined Proof using Fusion? Can you share which endpoint you are using?

For my use case, I create the Combined Proof using a Fusion HTTP module:

URL: WORKFRONT_HOST_URL/attask/api-unsupported/PROOF

Headers:

name:apiKey
value:YOUR_API_KEY

Query String:

name:action
value:createAndImportProof

Method: PUT

Body Type: Raw

Content Type: JSON

Request Content:

{
"proofsOptions": '[PROOF_OPTIONS_JSON_HERE]',
"objCode": "PROJ",
"objID": "WORKFRONT_PROJECT_ID"
}

 

2 replies

Ryan_T
Adobe Champion
Ryan_TAdobe ChampionAccepted solution
Adobe Champion
March 6, 2026

@KristyAnn - are you using an API endpoint to create a Combined Proof using Fusion? Can you share which endpoint you are using?

For my use case, I create the Combined Proof using a Fusion HTTP module:

URL: WORKFRONT_HOST_URL/attask/api-unsupported/PROOF

Headers:

name:apiKey
value:YOUR_API_KEY

Query String:

name:action
value:createAndImportProof

Method: PUT

Body Type: Raw

Content Type: JSON

Request Content:

{
"proofsOptions": '[PROOF_OPTIONS_JSON_HERE]',
"objCode": "PROJ",
"objID": "WORKFRONT_PROJECT_ID"
}

 

KristyAnn
KristyAnnAuthor
Level 2
April 14, 2026

Hi thanks for the the response. I have tried the same as you using createAndImportProof and that gets me a combined proof in the project however it does not let me use our existing ProofHQ proofing workflows and there seems to be no way to append the proof with an entire workflow only stages and because creating it requires a stage and a recipient I will end up having to remove those if I can append the proof with the workflow required.

 

I also get the combined proof in ProofHQ using the proofing workflow successfully using createWorkflowTemplateProof but then I am unable to add the created proof into the project in Workfront.

 

We already have existing processes and Fusion scenarios automating a huge part of proofing with the ProofHQ workflows so ideally not looking to completely change those to accommodate this.