action up_patch_transactions_transaction_id_relationships_category { label: "Categorize transaction" description: "Updates the category associated with a transaction. Only transactions\nfor which `isCategorizable` is set to true support this operation. The\n`id` is taken from the list exposed on `/categories` and cannot be one of\nthe top-level (parent) categories. To de-categorize a transaction, set\nthe entire `data` key to `null`. An HTTP `204` is returned on success.\nThe associated category, along with its request URL is also exposed via\nthe `category` relationship on the transaction resource returned from\n`/transactions/{id}`.\n" provider: up method: PATCH path: "/transactions/{transactionId}/relationships/category" encoding: json input: { type: "object" properties: { data: { description: "The category to set on the transaction. Set this entire key to `null`\nde-categorize a transaction.\n" type: "object" } transactionId: { type: "string" } } required: ["data", "transactionId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }