v51

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-08-01131107332.8 KB
Groups

Update group metadata

Updates the metadata of a group using the specified id.

This operation can fail for the following reasons:

  • No group exists with the specified ID (HTTP error 404)
  • A server error occurred (HTTP error 500)
put/groups/{groupId}

Request body

descriptionstring
labelsLabels

User-defined name-value pairs. Name and value must be strings.

ownerstring

Example request

{
  "description": "The description of the group.",
  "owner": "user-1",
  "labels": {
    "custom-1": "foo",
    "custom-2": "bar"
  }
}

Response

Empty response when the metadata is successfully updated.