curl --request POST \
--url https://api.example.com/v1/projects:batchDelete \
--header 'Content-Type: application/json' \
--data '
{
"names": [
"<string>"
],
"force": true
}
'This response has no body data.Deletes multiple projects in a single operation. Permissions required: bb.projects.delete
curl --request POST \
--url https://api.example.com/v1/projects:batchDelete \
--header 'Content-Type: application/json' \
--data '
{
"names": [
"<string>"
],
"force": true
}
'This response has no body data.The names of the projects to delete. Format: projects/{project}
If set to true, any databases from this project will be moved to default project. Sheets are not moved since BYTEBASE_ARTIFACT sheets belong to the issue and issue project. Open issues will remain open but associated with the deleted project. If set to false, the operation will fail if the project has databases or open issues.
Was this page helpful?