I have Budget with line items as follows (simplified):
{
"account": "4100000",
"subaccount": "ADMIN"
"amount": 123.45
},
{
"account": "4100000",
"subaccount": "CAPWRK"
"amount": 567.89
},
{
"account": "5555555",
"subaccount": "ADMIN"
"amount": 1000.00
}
If I `PUT` to `/entity/Default/20.200.001/Budget` but mark `”Delete”: true` on only the first item, both the first two items are deleted - ie: both items with 4100000 as the `account` are deleted, not just the ADMIN subaccount line item.
Am I missing something obvious??