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 /projects/{project-name}
OR
POST /projects/{project-name}/@PLUGIN@~delete
Deletes a project.
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 Project’ capability (provided by this plugin) or be a member of the Administrators group.
DELETE /projects/MyProject HTTP/1.0 Content-Type: application/json;charset=UTF-8 { "force": true }
HTTP/1.1 204 No Content
The DeleteOptionsInfo
entity contains options for the deletion of a project.
Part of Gerrit Code Review