delete_project
Remove a project from Backlog by specifying its ID or key, ensuring efficient project management and resource cleanup through API integration.
Instructions
Deletes a project
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| projectIdOrKey | Yes | Project ID or project key | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "projectIdOrKey": {
      "description": "Project ID or project key",
      "type": [
        "string",
        "number"
      ]
    }
  },
  "required": [
    "projectIdOrKey"
  ],
  "type": "object"
}