You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
29324
+
</p>
29325
+
</Card>
29326
+
Assign tags to multiple organization members in bulk.
29327
+
</dd>
29328
+
</dl>
29329
+
</dd>
29330
+
</dl>
29331
+
29332
+
#### 🔌 Usage
29333
+
29334
+
<dl>
29335
+
<dd>
29336
+
29337
+
<dl>
29338
+
<dd>
29339
+
29340
+
```python
29341
+
from label_studio_sdk import LabelStudio, OrganizationMemberTagAssignmentRequest
29342
+
29343
+
client = LabelStudio(
29344
+
api_key="YOUR_API_KEY",
29345
+
)
29346
+
client.organizations.member_tags.assign(
29347
+
id=1,
29348
+
assignments=[
29349
+
OrganizationMemberTagAssignmentRequest(
29350
+
tag_ids=[1],
29351
+
user_id=1,
29352
+
)
29353
+
],
29354
+
)
29355
+
29356
+
```
29357
+
</dd>
29358
+
</dl>
29359
+
</dd>
29360
+
</dl>
29361
+
29362
+
#### ⚙️ Parameters
29363
+
29364
+
<dl>
29365
+
<dd>
29366
+
29367
+
<dl>
29368
+
<dd>
29369
+
29370
+
**id:** `int` — A unique integer value identifying this organization.
29371
+
29372
+
</dd>
29373
+
</dl>
29374
+
29375
+
<dl>
29376
+
<dd>
29377
+
29378
+
**assignments:** `typing.Sequence[OrganizationMemberTagAssignmentRequest]` — List of member tag assignments to assign.
29379
+
29380
+
</dd>
29381
+
</dl>
29382
+
29383
+
<dl>
29384
+
<dd>
29385
+
29386
+
**overwrite:** `typing.Optional[bool]` — If true, replace all existing tag assignments for each user with the provided ones. If false, only add new assignments.
0 commit comments