Summary
          Gets all known automations
          Description
          Gets all known automations returned in alphabetical order
          Route
          GET /automation_catalog/automations
          Roles
          
            admin
other
readonly
apiread
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | queryParameters | object | yes | Options for query parameters | 
            
          
          
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "queryParameters": {
      "title": "queryParameters",
      "type": "object"
    }
  },
  "required": [
    "queryParameters"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | result | array | List of all automation documents | 
            
          
          
            Copied to Clipboard
            
            {
  "list": [
    {
      "_id": "c0bddd296dd5b60774d11bb1",
      "name": "test",
      "data": {
        "gbac": {
          "write": [
            "98044277461eb6d294effccf",
            "c84d9bab3d12d0c250194d66",
            "6be78ef5070a7a2137725422",
            "bbe0757837a77a12e06a7a66",
            "b332df0a08b0b92b41c2f34d"
          ],
          "read": [
            "fc15c2f1d76a277b6a51e68f",
            "03a83ddf105e00a92bad1e67",
            "abe28f38307c3398f09fd340",
            "f17d54b17e6391acdf297eda"
          ]
        },
        "lastUpdated": "2019-11-25T22:51:39.201Z",
        "description": "sunt",
        "workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
        "formId": "e13384c5c5ee49e02292159e"
      },
      "lastModifiedBy": "ipsum sint dolore enim occaecat",
      "lastRunAt": "2019-11-25T22:51:39.201Z",
      "nextRunAt": "2019-11-25T22:51:39.201Z",
      "repeatInterval": "3 weeks"
    },
    {
      "_id": "0f2e19a2317257e5fa21a7a3",
      "name": "test",
      "data": {
        "gbac": {
          "write": [
            "8b8029fa854d2ddafba7c5d6"
          ],
          "read": [
            "d6bc949b1bd2b69f79a3162b",
            "2939971ae6c610e1f28b3d12"
          ]
        },
        "lastUpdated": "2019-11-25T22:51:39.201Z",
        "description": "aliquip minim",
        "workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
        "formId": "57ac9d567620467f618350b7"
      },
      "lastModifiedBy": "aliqua reprehenderit culpa proident Lorem",
      "lastRunAt": "2019-11-25T22:51:39.201Z",
      "nextRunAt": "2019-11-25T22:51:39.201Z",
      "repeatInterval": "1 hour"
    },
    {
      "_id": "2d85e0caa51092461af96523",
      "name": "test",
      "data": {
        "gbac": {
          "write": [
            "705f9f95c946405de22228f4"
          ],
          "read": [
            "995bf8c5b2eb2eb7362dc4c3"
          ]
        },
        "lastUpdated": "2019-11-25T22:51:39.201Z",
        "description": "eu exercitation dolore reprehenderit id",
        "workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
        "formId": "3fabbc98f57f7de6b2e795cd"
      },
      "lastModifiedBy": "in",
      "lastRunAt": "2019-11-25T22:51:39.201Z",
      "nextRunAt": "2019-11-25T22:51:39.201Z",
      "repeatInterval": "1 hour"
    },
    {
      "_id": "60f2a67103d797b6fd0e36d1",
      "name": "test",
      "data": {
        "gbac": {
          "write": [
            "c733ee8fc30e589d938acba3",
            "749f67ba77c92143c6180729",
            "5eb18bc29c11dc1f9790c940"
          ],
          "read": [
            "bfc83c99995a318fc123ad96"
          ]
        },
        "lastUpdated": "2019-11-25T22:51:39.201Z",
        "description": "in ullamco consectetur",
        "workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
        "formId": "3898a144ad8b4a41154012d6"
      },
      "lastModifiedBy": "sint Excepteur adipisicing Ut veniam",
      "lastRunAt": "2019-11-25T22:51:39.201Z",
      "nextRunAt": "2019-11-25T22:51:39.201Z",
      "repeatInterval": "2 months"
    }
  ],
  "total": -14169256,
  "skip": -17691327,
  "limit": -73931911
}
           
          
            Copied to Clipboard
            
            {
  "title": "result",
  "type": "object",
  "properties": {
    "list": {
      "type": "array",
      "items": {
        "$ref": "automationDocument"
      }
    },
    "total": {
      "type": "integer"
    },
    "skip": {
      "type": "integer"
    },
    "limit": {
      "type": "integer"
    }
  }
}