action yodlee_update_transaction_category { label: "Update Category" description: "The update transaction categories service is used to update the transaction category name
for a high level category, a system-defined category and a user-defined category.
The renamed category can be set back to the original name by passing an empty string for categoryName.
The categoryName can accept minimum of 1, maximum of 50 alphanumeric or special characters.
The HTTP response code is 204 (Success without content).
" provider: yodlee method: PUT path: "/transactions/categories" encoding: json input: { type: "object" required: ["id", "source"] properties: { categoryName: { type: "string" } highLevelCategoryName: { type: "string" } id: { type: "integer" format: "int64" } source: { type: "string" enum: ["SYSTEM", "USER"] } } } output: { type: "object" additionalProperties: true } }