Join BoxWorks 2024 to discover what's possible with content and AI!
Register now!Creates a new group of users in an enterprise. Only users with admin permissions can create new groups.
id,type,name
A comma-separated list of attributes to include in the response. This can be used to request fields that are not normally returned in a standard response.
Be aware that specifying this parameter will have the effect that none of the standard fields are returned in the response unless explicitly specified, instead only fields for the mini representation are returned, additional to the fields requested.
""Customer Support Group - as imported from Active Directory""
255
A human readable description of the group.
"AD:123456"
An arbitrary identifier that can be used by external group sync tools to link this Box Group to an external group.
Example values of this field could be an Active Directory Object ID or a Google Group ID.
We recommend you use of this field in order to avoid issues when group names are updated in either Box or external systems.
"admins_only"
Specifies who can invite the group to collaborate on folders.
When set to admins_only
the enterprise admin, co-admins,
and the group's admin can invite the group.
When set to admins_and_members
all the admins listed
above and group members can invite the group.
When set to all_managed_users
all managed users in the
enterprise can invite the group.
Value is one of admins_only
,admins_and_members
,all_managed_users
"admins_only"
Specifies who can see the members of the group.
admins_only
- the enterprise admin, co-admins, group's
group adminadmins_and_members
- all admins and group membersall_managed_users
- all managed users in the
enterpriseValue is one of admins_only
,admins_and_members
,all_managed_users
"Customer Support"
The name of the new group to be created. This name must be unique within the enterprise.
"Active Directory"
255
Keeps track of which external source this group is
coming, for example Active Directory
, or Okta
.
Setting this will also prevent Box admins from editing the group name and its members directly via the Box web application.
This is desirable for one-way syncing of groups.
Returns the new group object.
Returns an error a conflict is stopping the group from being created.
invalid_parameter
: Often returned if the group name is not unique in
the enterprise.An unexpected client error.
curl -i -X POST "https://api.box.com/2.0/groups" \
-H "authorization: Bearer <ACCESS_TOKEN>" \
-H "content-type: application/json" \
-d '{
"name": "Customer Support"
}'
await client.groups.createGroup({
name: groupName,
description: groupDescription,
} satisfies CreateGroupRequestBody);
client.groups.create_group(group_name, description=group_description)
await client.Groups.CreateGroupAsync(requestBody: new CreateGroupRequestBody(name: groupName) { Description = groupDescription });
try await client.groups.createGroup(requestBody: CreateGroupRequestBody(name: groupName, description: groupDescription))
BoxGroup.Info groupInfo = BoxGroup.createGroup(api, "My Group");
created_group = client.create_group('Example Group')
print(f'Created group with ID {created_group.id}')
var groupParams = new BoxGroupRequest()
{
Name = "Engineers"
};
BoxGroup group = await client.GroupsManager.CreateAsync(groupParams);
client.groups.create('My group', {description: 'An example group'})
.then(group => {
/* group -> {
type: 'group',
id: '119720',
name: 'Box Employees',
created_at: '2013-05-16T15:27:57-07:00',
modified_at: '2013-05-16T15:27:57-07:00' }
*/
});
client.groups.create(name: "Team A", provenance: "Test", externalSyncIdentifier: "Test Sync", description: "Test Description", invitabilityLevel: .allManagedUsers, memberViewabilityLevel: .allManagedUsers) { (result: Result<Group, BoxSDKError>) in
guard case let .success(group) = result else {
print("Error creating new group")
return
}
print("Group \(group.name) was created")
}
{
"id": "11446498",
"type": "group",
"created_at": "2012-12-12T10:53:43-08:00",
"description": "Support Group - as imported from Active Directory",
"external_sync_identifier": "AD:123456",
"group_type": "managed_group",
"invitability_level": "admins_only",
"member_viewability_level": "admins_only",
"modified_at": "2012-12-12T10:53:43-08:00",
"name": "Support",
"permissions": {
"can_invite_as_collaborator": true
},
"provenance": "Active Directory"
}