action yodlee_delete_transaction_categorization_rule {
label: "Delete Transaction Categorization Rule"
description: "The delete transaction categorization rule service is used to delete the given user-defined transaction categorization rule for both system-defined category as well as user-defined category.
This will delete all the corresponding rule clauses associated with the rule.
The HTTP response code is 204 (Success without content).
"
provider: yodlee
method: DELETE
path: "/transactions/categories/rules/{ruleId}"
encoding: json
input: {
type: "object"
properties: {
ruleId: {
type: "integer"
format: "int64"
}
}
required: ["ruleId"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}