Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.illuxi.com/llms.txt

Use this file to discover all available pages before exploring further.

Structure of a criteria object

column
string
required
Name of the column
operator
string
required
Name of the operator. Available operators: equal, like, greater, lower.
value
string
required
Value to match

Example

{
    "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