Skip to main content

New mutations to add or remove users from a team

  • January 23, 2024
  • 0 replies
  • 373 views

rachelatmonday
Forum|alt.badge.img

We recently added two new mutations that allow you to add or remove users from a team. These are available in API versions 2024-01 and later!

mutation {
  add_users_to_team (team_id: 7654321, user_ids: [123456, 654321, 012345]) {
    successful_users {
      name
      email 
    }
    failed_users {
      name
      email
    }
  }
}   
mutation {
  remove_users_from_team (team_id: 7654321, user_ids: [123456, 654321, 012345]) {
    successful_users {
      name
      email 
    }
    failed_users {
      name
      email
    }
  }
}