Summary
          Get Tasks
          Description
          Get all Tasks.
          Route
          GET /workflow_builder/tasks/list
          Roles
          
            admin
engineering
support
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              | This method has no parameters | 
            
          
          
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {},
  "required": [],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | task_list | array | List of all Tasks. | 
            
          
          
            Copied to Clipboard
            
            [
  {
    "name": "eu",
    "summary": "qui",
    "description": "deserunt et non velit",
    "location": "Broker",
    "app": "mollit ex ullamco ad",
    "displayName": "ut mollit irure",
    "type": "automatic",
    "deprecated": true
  },
  {
    "name": "dolore ea Excepteur consequat",
    "summary": "culpa ex amet sunt",
    "description": "amet labore culpa",
    "location": "Broker",
    "app": "in consequat",
    "displayName": "irure enim aute esse",
    "type": "manual",
    "deprecated": true
  },
  {
    "name": "dolore proident",
    "summary": "anim",
    "description": "reprehenderit Lorem",
    "location": "Adapter",
    "app": "amet culpa",
    "displayName": "proident occaecat amet magna",
    "type": "operation",
    "deprecated": true
  },
  {
    "name": "ea deserunt amet sint",
    "summary": "veniam id",
    "description": "id",
    "location": "Application",
    "app": "Lorem in",
    "displayName": "voluptate tempor ad magna Lorem",
    "type": "automatic",
    "deprecated": false
  },
  {
    "name": "dolor anim sint",
    "summary": "deserunt ex",
    "description": "ex minim exercitation sunt",
    "location": "Broker",
    "app": "ut veniam nisi",
    "displayName": "enim",
    "type": "automatic",
    "deprecated": true
  }
]
           
          
            Copied to Clipboard
            
            {
  "title": "task_list",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "name": {
        "type": "string"
      },
      "summary": {
        "type": "string"
      },
      "description": {
        "type": "string"
      },
      "location": {
        "type": "string",
        "enum": [
          "Application",
          "Adapter",
          "Broker"
        ]
      },
      "app": {
        "type": "string"
      },
      "displayName": {
        "type": "string"
      },
      "type": {
        "type": "string",
        "enum": [
          "automatic",
          "manual",
          "operation"
        ]
      },
      "variables": {
        "type": "object",
        "incoming": {
          "type": "object"
        },
        "outgoing": {
          "type": "object"
        }
      },
      "deprecated": {
        "type": "boolean"
      }
    }
  }
}