Session ID in Fusion? | Community
Skip to main content
Level 4
May 23, 2025
Solved

Session ID in Fusion?

  • May 23, 2025
  • 1 reply
  • 527 views

Is there a way to view a Session Id in Fusion Custom API call? The DevTool is not showing it

Best answer by Sven-iX

No. Frankly I am not clear why it's hidden. 

 

The session is created by the connection with which you access Workfront. Not sure why you need the session, but you could roll your own: 

  1. get the session with a customAPI call where you put "session" into the URL field
  2. instead of a customAPI call, use an HTTPRequest module and pass the sessionID header

1 reply

Sven-iX
Community Advisor
Sven-iXCommunity AdvisorAccepted solution
Community Advisor
May 24, 2025

No. Frankly I am not clear why it's hidden. 

 

The session is created by the connection with which you access Workfront. Not sure why you need the session, but you could roll your own: 

  1. get the session with a customAPI call where you put "session" into the URL field
  2. instead of a customAPI call, use an HTTPRequest module and pass the sessionID header
vioviAuthor
Level 4
May 27, 2025

Thank you, Sven! I was able to get SessionID with Custom API call to "session"

 

First, I was trying to run the subscriptions request as

GET https://<HOSTNAME>/attask/eventsubscription/api/v1/subscriptions

using Custom API Call too and was passing the sessionID to the header there, but I was getting an error "[422] null objCode"

 

It appeared that it was adding my request to the default URL, so I got: 

https://origin-host.workfront.com/attask/api/v20.0/https:/host.workfront.com/attask/eventsubscription/api/v1/subscriptions

 

Then I tried it with HTTP request and got what was needed

 

Thank you very much for your help!