get_categories
Retrieve a list of categories for a specific project in Backlog by providing the project ID or key, enabling organized project management and issue categorization.
Instructions
Returns list of categories for 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"
}