action atlassian_get_project_category_by_id { label: "Get project category by ID" description: "Returns a project category.\n\n**[Permissions](#permissions) required:** Permission to access Jira." provider: atlassian method: GET path: "/rest/api/3/projectCategory/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "A project category." properties: { description: { type: "string" description: "The description of the project category." } id: { type: "string" description: "The ID of the project category." } name: { type: "string" description: "The name of the project category. Required on create, optional on update." } self: { type: "string" format: "uri" description: "The URL of the project category." } } additionalProperties: false } }