assign_users_to_organization
Efficiently assign multiple users to a specific organization using an organization ID and user IDs array. Simplifies user organization management within Binalyze AIR's digital forensics and incident response system.
Instructions
Assign users to a specific organization
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the organization to assign users to | |
userIds | Yes | Array of user IDs to assign to the organization |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The ID of the organization to assign users to",
"type": "string"
},
"userIds": {
"description": "Array of user IDs to assign to the organization",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"id",
"userIds"
],
"type": "object"
}