This page describes how to automate user and team management at scale using the SCIM API and the Python SDK API.Documentation Index
Fetch the complete documentation index at: https://wb-21fd5541-docs-2661.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
SCIM API
Use the W&B SCIM API to manage your W&B organization’s users and teams at scale through an identity provider (IdP) like Okta or Microsoft Entra. For more information, see Authentication on the SCIM reference page. The following sections describe each category of the SCIM API.User SCIM API
The User SCIM API lets you create, deactivate, fetch, and list users in a W&B organization, and assign predefined or custom roles. For complete request and response examples, see the SCIM reference.To deactivate a user, send
PATCH /scim/Users/{id} with {"active": false}. The hosting option determines the outcome: Dedicated Cloud and Self-Managed deployments retain the user record, while Multi-tenant Cloud removes the user from the organization. Reactivation isn’t available in Multi-tenant Cloud. Re-add the user instead. See Deactivate user and Reactivate user.Group SCIM API
The Group SCIM API lets you manage W&B teams, including creating or removing teams in an organization. To add or remove users in an existing team, usePATCH Group.
W&B has no notion of a “group of users having the same role.” A W&B team closely resembles a group and lets users with different roles work collaboratively on a set of related projects. Teams can consist of different groups of users. Assign each user in a team a role: team admin, member, viewer, or a custom role.W&B maps Group SCIM API endpoints to W&B teams because of the similarity between groups and W&B teams.