action pocketsmith_delete_categories_id { label: "Delete category" description: "Deletes a particular category by its ID. This will delete all budgets within the category, and uncategorize all transactions assigned to the category." provider: pocketsmith method: DELETE path: "/categories/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }