Dataset Items Sorter — Sort Dataset Items

    Add this tool as a webhook to your data extractor to sort the result set by index field

    1 credits per request
    ~30s
    4 runs
    Features
    JSON/CSV Export
    API Access
    Scalable Automation
    Use Cases
    Data Extraction
    Developer Tools

    What This Tool Does

    Sort Result Set Items — Add this tool as a webhook to your data extractor to sort the result set by index field

    Use Cases

    • Data Extraction
    • Developer Tools

    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

    {
     "datasetId": "12345"
    }
    

    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