Summary
          Search Tasks
          Description
          Search Tasks with Options
          Route
          POST /workflow_engine/tasks/search
          Roles
          
            admin
apiread
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | filter | object | yes | Search Filter | 
    | options | object | yes | expand, fields, query, local, limit, skip, sort | 
            
          
          
            Copied to Clipboard
            
            {
  "filter": {
    "someFieldName": "Some Value to query the against the someFieldName property"
  },
  "options": {
    "expand": [
      "owner",
      "created_by",
      "owner",
      "user"
    ],
    "fields": {
      "name": 1
    },
    "query": {
      "name": "abcd"
    },
    "limit": 50,
    "local": true,
    "skip": 0,
    "sort": {
      "name": -1
    }
  }
}
           
          
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | tasks | object | Search Results | 
            
          
          
            Copied to Clipboard
            
            {
  "results": [
    {
      "_id": "5cb7b531d06cceb89fd21b1c",
      "job": {
        "_id": "5cb7b531d06cceb89fd21b1c",
        "task": "12ab",
        "ancestors": [
          "4321abcdef694aa79dae47ad"
        ],
        "name": false,
        "description": "Excepteur velit nisi"
      },
      "variables": {
        "incoming": {
          "inputVariable": "inputValue"
        },
        "outgoing": {
          "outputVariable": null
        },
        "error": "",
        "decorators": [
          {
            "type": "encryption",
            "pointer": "voluptate"
          }
        ]
      },
      "metrics": {
        "retrying": false
      },
      "name": 91214001,
      "summary": true,
      "displayName": true,
      "type": -63999516,
      "x": 42739542,
      "y": true
    },
    {
      "_id": "4321abcdef694aa79dae47ad",
      "job": {
        "_id": "4321abcdef694aa79dae47ad",
        "task": "cd34",
        "ancestors": [
          "4321abcdef694aa79dae47ad",
          "5cb7b531d06cceb89fd21b1c",
          "5cb7b531d06cceb89fd21b1c"
        ],
        "name": "veniam Excepteur",
        "description": 38602284.14498067
      },
      "variables": {
        "incoming": {
          "inputVariable": "inputValue"
        },
        "outgoing": {
          "outputVariable": null
        },
        "error": "",
        "decorators": [
          {
            "type": "encryption",
            "pointer": "minim adipisicing Duis"
          },
          {
            "type": "encryption",
            "pointer": "deserunt adipisicing sed Ut minim"
          },
          {
            "type": "encryption",
            "pointer": "amet non velit aliquip"
          },
          {
            "type": "encryption",
            "pointer": "consequat anim dolor"
          }
        ]
      },
      "metrics": {
        "retrying": false
      },
      "name": 45322955,
      "summary": true,
      "displayName": 20673031,
      "type": false,
      "x": true,
      "y": true
    }
  ],
  "skip": 0,
  "limit": 50,
  "total": 100
}