Result Sets Compare — Datasets Compare

    Act for comparing data collector execution results. By default the final result set will contain only new and updated records.

    1 credits per request
    ~30s
    5 runs
    Features
    JSON/CSV Export
    API Access
    Scalable Automation
    Use Cases
    Web Automation
    Data Processing

    What This Tool Does

    Result Sets Compare — Act for comparing data collector execution results. By default the final result set will contain only new and updated records.

    Use Cases

    • Web Automation
    • Data Processing

    Data Fields

    Output structure depends on the operation performed. Common fields include:

    FieldTypeDescription
    statusstringOperation status (success / error)
    countnumberNumber of records processed
    resultarrayProcessed or transformed records
    summaryobjectProcessing statistics and metadata

    Example Request

    {
     "idAttr": "12345",
     "newDataset": "example",
     "oldDataset": "example"
    }
    

    Example Response

    {
     "status": "success",
     "count": 42,
     "result": [
     { "id": "item-001", "value": "processed data" }
     ],
     "summary": { "processed": 42, "skipped": 0, "errors": 0 }
    }
    

    Limits and Tips

    • Processing time scales with result set size. Large result sets (10,000+ rows) may take several minutes.
    • Results are returned as a JSON array. An empty array indicates no records matched the criteria.
    • Check the input schema for required parameters (e.g., result set IDs, field names) before running.
    • For large result sets, consider processing in smaller batches to avoid timeouts.

    On this page