Expand my Community achievements bar.

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

Fusion internal API

Avatar

Level 8

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!

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

@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? 

SveniX_1-1754602644843.png

 

View solution in original post

7 Replies

Avatar

Community Advisor

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

Rafal_Bainie_0-1754056124841.png

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

Avatar

Level 8

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.

Avatar

Community Advisor

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.

Avatar

Level 10

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

Avatar

Level 8

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

KristenS_WF_0-1754320794733.png

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):

KristenS_WF_1-1754321025698.png

 

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.

 

 

 

Avatar

Correct answer by
Community Advisor

@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? 

SveniX_1-1754602644843.png

 

Avatar

Level 8

Thanks, Sven!  I was missing "Token " in the header value.