Announcement

Collapse
No announcement yet.

formula to get the user list of a specific team

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • formula to get the user list of a specific team

    I am writing script in a process flowchart and would like to get the user list of a specific team in the script. Thanks

  • #2
    It is not easy as there is no userIds attribute in Team entity

    Comment


    • #3
      Hello Vincent,

      Maybe this formula will help you:

      $userIds = record\findRelatedMany('Team', $teamId, 'users', 100);

      Comment


      • #4
        Thank you!

        Comment

        Working...
        X