Expand my Community achievements bar.

Don’t miss the Workfront AMA: System Smarts & Strategic Starts! Ask your questions about keeping Workfront running smoothly, planning enhancements, reporting, or adoption, and get practical insights from Adobe experts.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

SOLVED

Is there a way to share a portfolio using Fusion?

Avatar

Level 2

We are using Fusion to create new portfolios. When they're created, they are not shared with any users/teams. Is it possible to also share the new portfolio using Fusion?

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

This is a screenshot of our Fusion scenario that does this as part of a chain of command that fire when a new Company is synced from Salesforce.

 

Last step is a Custom API call module configured as below. 

 

KatherineSt_0-1691695493213.png

 

 

View solution in original post

3 Replies

Avatar

Level 10

Hi,

 

I don't know, if there is also a 'direct' method in Fusion, but you could use a custom API call:

 

 

var url = API_URL + 'port/' + portfolioID + '/share?method=put&accessorID=' + accessorID + '&accessorObjCode=USER&coreAction=VIEW';

 

 

In this case the provided accessor is a USER and would get VIEW access to the provided portfolio ID.

 

Regards

Lars

Avatar

Correct answer by
Community Advisor

This is a screenshot of our Fusion scenario that does this as part of a chain of command that fire when a new Company is synced from Salesforce.

 

Last step is a Custom API call module configured as below. 

 

KatherineSt_0-1691695493213.png

 

 

Avatar

Level 2

Thank you, this worked for our scenario!!