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": [
"user",
"created_by",
"user"
],
"fields": {
"name": 1
},
"query": {
"name": "abcd"
},
"limit": 50,
"local": false,
"skip": 0,
"sort": {
"name": -1
}
}
}
Return
DetailsExampleSchema
| Name |
Type |
Description |
| tasks |
object |
Search Results |
Copied to Clipboard
{
"results": [
{
"_id": "5cb7b531d06cceb89fd21b1c",
"job": {
"_id": "4321abcdef694aa79dae47ad",
"task": "12ab",
"ancestors": [
"4321abcdef694aa79dae47ad",
"5cb7b531d06cceb89fd21b1c",
"4321abcdef694aa79dae47ad"
],
"name": true,
"description": -67788095
},
"variables": {
"incoming": {
"inputVariable": "inputValue"
},
"outgoing": {
"outputVariable": null
},
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "sunt"
},
{
"type": "encryption",
"pointer": "non"
},
{
"type": "encryption",
"pointer": "ea et in sit anim"
},
{
"type": "encryption",
"pointer": "consequat"
}
]
},
"metrics": {
"retrying": false
},
"name": 96765051,
"summary": 40410876,
"displayName": "pariatur ut fugiat quis",
"type": "qui ad esse dolore",
"x": 31845956,
"y": -75803422
},
{
"_id": "5cb7b531d06cceb89fd21b1c",
"job": {
"_id": "4321abcdef694aa79dae47ad",
"task": "cd34",
"ancestors": [
"4321abcdef694aa79dae47ad"
],
"name": "reprehenderit do sunt adipisicing nulla",
"description": -75218298
},
"variables": {
"incoming": {
"inputVariable": "inputValue"
},
"outgoing": {
"outputVariable": null
},
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "minim nostrud"
},
{
"type": "encryption",
"pointer": "Excepteur ullamco fugiat nostrud"
}
]
},
"metrics": {
"retrying": true
},
"name": "adipisicing deserunt laboris in dolor",
"summary": true,
"displayName": 26074788,
"type": -96129247,
"x": -57548634.48231173,
"y": -9697528.420252994
},
{
"_id": "4321abcdef694aa79dae47ad",
"job": {
"_id": "5cb7b531d06cceb89fd21b1c",
"task": "12ab",
"ancestors": [
"5cb7b531d06cceb89fd21b1c",
"4321abcdef694aa79dae47ad"
],
"name": "ex in qui in",
"description": "do ullamco adipisicing"
},
"variables": {
"incoming": {
"inputVariable": "inputValue"
},
"outgoing": {
"outputVariable": null
},
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "nisi officia magna veniam minim"
},
{
"type": "encryption",
"pointer": "proident est consectetur"
},
{
"type": "encryption",
"pointer": "deserunt Duis"
}
]
},
"metrics": {
"retrying": false
},
"name": 93744365.60545895,
"summary": 8696220,
"displayName": -71760393.7950261,
"type": false,
"x": "dolor laboris anim voluptate",
"y": 4450006.199066699
}
],
"skip": 0,
"limit": 50,
"total": 100
}