Skip to main content
GET
/
v2
/
item-filters
List all Item filters
curl --request GET \
  --url https://api-sandbox.argyle.com/v2/item-filters \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "name": "Candidate for new car loan fields supported",
    "filters": {
      "field_coverage": {
        "gigs": {
          "distance": {
            "supported": true
          }
        },
        "vehicles": {
          "year": {
            "supported": true
          }
        }
      }
    }
  },
  {
    "name": "Deposit switching supported",
    "filters": {
      "direct_deposit_switch": {
        "deposit_account": {
          "supported": {
            "eq": true
          }
        }
      }
    }
  }
]

Authorizations

Authorization
string
header
required

Username = api_key_id, Password = api_key_secret

Query Parameters

limit
integer

Number of Item filters returned per page. Default: 10. Maximum: 200.

Response

200 - application/json
name
string

The name of the item filter.

Example:

"Candidate for new car loan fields supported"

filters
object

The filters applied to this item filter.

Example:
[
{
"name": "Candidate for new car loan fields supported",
"filters": {
"field_coverage": {
"gigs": { "distance": { "supported": true } },
"vehicles": { "year": { "supported": true } }
}
}
},
{
"name": "Deposit switching supported",
"filters": {
"direct_deposit_switch": {
"deposit_account": { "supported": { "eq": true } }
}
}
}
]