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": "Key paystub fields supported",
"filters": {
"status": {
"eq": "healthy"
},
"field_coverage": {
"paystubs": {
"gross_pay": {
"supported": {
"eq": true
}
},
"paystub_date": {
"supported": {
"eq": true
}
}
}
}
}
}
'