User Groups

Create Group

This endpoint creates a User Group within a Workspace.

User Groups are used to organize and manage users within a Workspace.

In the API documentation, team_id refers to the Workspace ID, and group_id refers to the User Group ID.

Note: Adding a guest with view-only permissions to a Team automatically converts them to a paid guest.

If no paid guest seats are available, an additional member seat will be added, increasing the number of paid guest seats.

This change incurs a prorated charge based on the billing cycle.

post/v2/team/{team_id}/group

Path parameters

team_idnumber required
Example:123

Workspace ID

Request body

namestring required
handlestring
membersinteger[] required

Example request

{
  "name": "New team name",
  "handle": "newteamname",
  "members": [
    123456,
    987654
  ]
}

Response

idstring required
team_idstring required
useridinteger required
namestring required
handlestring required
date_createdstring required
initialsstring required
avatarAvatar required— unresolved $ref

Example response

{
  "id": "4bfdfcec-6f4f-40a7-b0d6-22660d51870d",
  "team_id": "301540",
  "userid": 301828,
  "name": "User group",
  "handle": "usergroup",
  "date_created": "1640122639829",
  "initials": "U",
  "members": [
    {
      "id": 185,
      "username": "Sam",
      "email": "sam@example.com",
      "color": "#4169E1",
      "initials": "S",
      "profilePicture": "https://attachments.clickup.com/profilePictures/profile.jpg"
    },
    {
      "id": 186,
      "username": "Alex",
      "email": "alex@example.com",
      "color": "#4169E1",
      "initials": "A",
      "profilePicture": "https://attachments.clickup.com/profilePictures/profile.jpg"
    }
  ],
  "avatar": {
    "attachment_id": null,
    "color": null,
    "source": null,
    "icon": null
  }
}

Changes