Forgejo API
DELETE/admin/quota/groups/{quotagroup}/users/{username}

Remove a user from a quota group

Removes a user from a quota group. Use quotagroup and username to identify the group membership to remove.

2 parameters
quotagroupstringrequired
The name or identifier of the quota group to remove the user from.
usernamestringrequired
The username of the user to remove from the quota group.

4 status codes
204Returns no content after the user is removed from the quota group.
400Returned when `quotagroup` or `username` is invalid.
messagestringoptional
urlstringoptional
403Returned when the authenticated user is not permitted to modify quota-group membership.
messagestringoptional
urlstringoptional
404Returned when the quota group or user membership does not exist.
errorsarray<string>optional
messagestringoptional
urlstringoptional

Error handling

A 400 is returned when quotagroup or username is invalid. A 403 is returned when the authenticated user lacks permission to change quota-group membership, and a 404 is returned when the group or user membership cannot be found.