curl --request PUT \
--url https://api-sandbox.argyle.com/v2/item-filters/{id} \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Multiple allocations for deposit switches",
"filters": {
"direct_deposit_switch": {
"deposit_account": {
"supported": {
"eq": true
},
"max_allocations": {
"gte": "2"
},
"amount_allocation": {
"eq": true
},
"percent_allocation": {
"eq": true
}
}
}
}
}
'