action yodlee_delete_transaction_category { label: "Delete Category" description: "The delete transaction categories service is used to delete the given user-defined category.
The HTTP response code is 204 (Success without content).
" provider: yodlee method: DELETE path: "/transactions/categories/{categoryId}" encoding: json input: { type: "object" properties: { categoryId: { type: "integer" format: "int64" } } required: ["categoryId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }