latestOpenAPI 3.0.02026-08-10416661.5 MB

e96b3e58b041

Groups

Update a group

REQUIRED SCOPES <code>['groups:write']</code><br>Update details of a specific group

put/groups/update

Request body

group_idinteger
namestring
descriptionstring
membersinteger[]

Example request

{
  "name": "Updated Group Name",
  "description": "Updated group description",
  "members": [
    1,
    2,
    3
  ]
}

Response

Group updated successfully

idinteger

The unique identifier of the group

namestring

The name of the group

descriptionstring nullable

The description of the group

is_integration_teamboolean

Indicates whether the group is an integration team

Example response

{
  "id": 1,
  "name": "Development Team",
  "description": "This group handles all development tasks",
  "integration_team": {
    "id": 10,
    "name": "Core Integration Team"
  }
}