Fusion internal API | Community
Skip to main content
KristenS_WF
Level 6
July 30, 2025
Solved

Fusion internal API

  • July 30, 2025
  • 2 replies
  • 670 views

Could someone give me a little guidance for working with the the Fusion internal API?  I've created an API token (selecting all the 'read' options), and I've looked at the Make.com documentation.

I've tried using an HTTP Make a Request module, using https://app.workfrontfusion.com/api/v5/ as a base URL (using v2 like I see in the Make.com documentation seems to result in a "not logged in" error).  I've tried different calls (a list of users and a list of team scenarios).  I don't get errors, but I only get a long string of HTML code (that doesn't appear to contain any of the data I'm seeking) as an output.

I'm not sure what I'm doing wrong.  Any pointers would be appreciated.  Thanks!

Best answer by Sven-iX

@kristens_wf 
pls try https://fusion.adobe.com/api/v2/ or https://app.workfrontfusion.com/api/v2

 

There is no v5. 

 

If you get a not logged in error - are you passing the authentication token as header? 

 

2 replies

Rafal_Bainie
Community Advisor
Community Advisor
August 1, 2025

here is how I call internal API using fusion, which hopefully gives an idea how you can call it from anywhere using HTTP request

TASK - here, you input any endpoint name

search? - only if you read values, otherwise specify another action

API version - most important parameter in this case

Query string - I use here fields to specify any field I want, including "internal" ones

 

I think that base URL would convert to something like this: 
https://[yourOrgID].my.workfront.com/attask/api-internal/TASK/search?

I hope this helps

KristenS_WF
Level 6
August 1, 2025

Thanks, Rafal.  Just to be clear--this will allow me to access the Fusion API (to research scenario runs, incomplete executions, etc.)?  I'm not looking to access the Workfront API.  Thanks.

Rafal_Bainie
Community Advisor
Community Advisor
August 1, 2025

I see, I misunderstood the question. 

My response was related to Workfront's internal API. I don't think Fusion API is exposed atm. 
Maybe someone will prove me wrong.

lgaertner
Level 9
August 4, 2025

Hello Kristen,

 

I am working with the Fusion API without any issues besides the fact, that not everything documented for the make.com API is also valid for Fusion.

 

As we are working on the European servers, our API URL is 

 
So, I think you just need
to use the following URL for your Fusion instance:
 
 
Regards
Lars
KristenS_WF
Level 6
August 4, 2025

Thanks, Lars.  This is is the base URL for our Fusion instance:

I've tried both https://fusion.adobe.com/api/v5/ and https://app.workfrontfusion.com/api/v5/ with the same result (v2 gives a not logged in error, and the output specifies the API version as 5.38.1).  I just get a big block of HTML (the beginning of which is pictured):

 

I've tried calls for https://fusion.adobe.com/api/v5/users and https://fusion.adobe.com/api/v5/scenarios?teamId=**** but neither is working for me.

 

 

 

Sven-iX
Community Advisor
Sven-iXCommunity AdvisorAccepted solution
Community Advisor
August 7, 2025

@kristens_wf 
pls try https://fusion.adobe.com/api/v2/ or https://app.workfrontfusion.com/api/v2

 

There is no v5. 

 

If you get a not logged in error - are you passing the authentication token as header?