Fusion Module to clear Other Teams | Community
Skip to main content
Tracy_Parmeter
Level 4
July 13, 2026
Solved

Fusion Module to clear Other Teams

  • July 13, 2026
  • 3 replies
  • 84 views

I have created a Fusion scenario that removes deactivated users from their Home Team. The issue is that they still have Other Teams. I tried everything I could think of and kept getting errors to set their other teams to null. Does anyone know how I can accomplish this?

Maybe I need to come at this from the Team side and remove any inactive users versus using the user update scenario to do it. It’s just that I have the user one accomplishing other actions so I was hoping to get the user profile corrected using the same scenario.

Best answer by Tracy_Parmeter

I had them in separate modules but this is much cleaner. Thank you

3 replies

KellieGardner
Adobe Champion and Community Advisor
Adobe Champion and Community Advisor
July 13, 2026

I did this with Roles recently and had to use the API module to get to “other roles”. Likely the same with Teams. 

ninoskuflic
Level 5
July 16, 2026

Hi ​@Tracy_Parmeter, you can do it like this with a custom API call (PUT method):

 

Endpoint:

user/USER_ID?fields=teamIDs,teams

Body:

{
"homeTeamID": "",
"teams": []
}

 

You need to add both HomeTeamID and Teams (which is other teams). If you add just “teams” then the home team will still stay, but this clears it all. 😁

 

I have tested this and verified that it works:

 

If this solved your issue, please mark it as solved so others can find the solution faster.
Tracy_Parmeter
Tracy_ParmeterAuthorAccepted solution
Level 4
July 16, 2026

I had them in separate modules but this is much cleaner. Thank you