跳转到内容
Try Gitea Cloud ☁️ for 30 days → Accelerate your Development & Deploys!
Support

Update a user group

PATCH
/admin/groups/{id}
curl --request PATCH \
--url https://gitea.example.com/api/v1/admin/groups/1 \
--header 'Authorization: Basic <credentials>' \
--header 'Content-Type: application/json' \
--data '{ "description": "example", "name": "example", "parent_id": 1 }'

Gitea Enterprise only. This endpoint is not part of the community edition.

id
required
integer format: int64

Id of the user group

Media typeapplication/json
EditUserGroupOption contains options for editing a user group.
object
description
string
name
string
parent_id
integer format: int64
Examplegenerated
{
"description": "example",
"name": "example",
"parent_id": 1
}

The updated user group

Media typeapplication/json
UserGroup represents a user group in API responses.
object
description
string
id
integer format: int64
name
string
parent_id
integer format: int64
Examplegenerated
{
"description": "example",
"id": 1,
"name": "example",
"parent_id": 1
}

APIForbiddenError is a forbidden error response

message
string
url
string

APINotFound is a not found empty response