> ## Documentation Index
> Fetch the complete documentation index at: https://developers.illuxi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Criterias

> Criterias can be used to filter the requested data.

## Structure of a criteria object

<ParamField path="column" type="string" required>
  Name of the column
</ParamField>

<ParamField path="operator" type="string" required>
  Name of the operator. Available operators: equal, like, greater, lower.
</ParamField>

<ParamField path="value" type="string" required>
  Value to match
</ParamField>

## Example

```json theme={null}
{
    "criterias": [
        {
            "column": "take_completed_date",
            "operator": "greater",
            "value": "2024-01-01"
        },
        {
            "column": "status",
            "operator": "equal",
            "value": "done"
        },
        {
            "column": "product_key",
            "operator": "like",
            "value": "leadership%"
        }
    ]
}
```

* Navigation | Columns: Specify which columns to retrieve. -> ../columns
