Create

  • POST
  • /workspaces
  • /:workspace
  • /groups

Creates a new group. Restricted to admins only.

Request

REQUIRED SCOPES
WORKSPACE
URL PARAMETERS
workspacerequired string
The workspace name.
POST PARAMETERS
namerequired string
The name of the group.
descriptionstring
The description of the group.

Last modified on Apr 8, 2025

Example:

curl -X POST "https://api.buddy.works/workspaces/:workspace/groups" \
-H "Authorization: Bearer <YOUR-TOKEN>" \
-H "Content-Type: application/json" \
-d '{
  "name": "JAVA",
  "description": "Java developers"
}'
EXAMPLE RESPONSE
{ "url": "https://api.buddy.works/workspaces/buddy/groups/1", "html_url": "https://app.buddy.works/buddy/group/1", "id": 1, "name": "JAVA", "description": "Java developers" }
STATUS
201 Created
LIMITS
X-Rate-Limit-Limit: 1 X-Rate-Limit-Remaining: 999