LicenseFilter

LicenseFilter
License Search Filter

A list of conditional criteria used to refine and narrow down the search results. Multiple filters are applied using logical 'AND' conditions (i.e., a record must satisfy all provided filters to be returned).

JSON Example
{
    "key": "STATUS",
    "operator": "EQUALS",
    "value": "ACTIVE"
}
string
key
Required

The name of the specific data attribute to evaluate. Below is list of keys allowed:

  • STATUS - license status, like ACTIVE, INACTIVE, etc
  • IS_DEFAULT - license is default or not, values can be true or false
  • VCF_OPS_ID - id of the vcf ops instance
  • SERIAL_NUMBER - serial number
  • PRODUCT_DISPLAY_NAME - product name
Possible values are : STATUS, IS_DEFAULT, VCF_OPS_ID, SERIAL_NUMBER, PRODUCT_DISPLAY_NAME,
string
operator
Required

Defines the comparison logic applied to the filter

  • EQUALS - Exact match (case-insensitive)
  • LIKE - Partial text match (case-insensitive)
Possible values are : EQUALS, LIKE,
string
value
Required

The target value against which the key is compared.