This page describes the project related REST endpoints that are added by the @PLUGIN@.
Please also take note of the general information on the REST API.
DELETE /accounts/{account-id}
OR
POST /accounts/{account-id}/@PLUGIN@~delete
Deletes an account.
Options for the deletion can be specified in the request body as a DeleteOptionsInput entity.
Please note that some proxies prohibit request bodies for DELETE requests. In this case, if you want to specify options, use POST to delete the project.
Caller must be a member of a group that is granted the ‘Delete Account’ capability (provided by this plugin), or granted the ‘Delete Own Account’ to be able to remove its own account.
DELETE /accounts/1000002 HTTP/1.0 Content-Type: application/json;charset=UTF-8 { "account_name": "John Doe" }
HTTP/1.1 204 No Content
The DeleteOptionsInfo
entity contains options for the deletion of a project.
Part of Gerrit Code Review