Summary
          Get summary of a Golden Config tree.
          Description
          Get summary of the specified Golden Config tree.
          Route
          POST /configuration_manager/search/configs
          Roles
          
            admin
apiread
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | treeId | string | yes | - | 
    | options | object | yes | Additional search options. | 
            
          
          
            Copied to Clipboard
            
            {
  "treeId": "5c35355dbebaa82eaf8113f0",
  "options": {
    "start": -41358870.0022931,
    "limit": -78643228.61157276,
    "sort": -60313193.136334985,
    "deviceType": "sint nulla"
  }
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "treeId": {
      "title": "treeId",
      "$ref": "common#/definitions/mongoObjectId"
    },
    "options": {
      "title": "options",
      "properties": {
        "start": {
          "type": "number",
          "example": "0"
        },
        "limit": {
          "type": "number",
          "example": "10"
        },
        "sort": {
          "type": "number",
          "example": 1
        },
        "deviceType": {
          "type": "string",
          "example": "cisco-ios"
        }
      }
    }
  },
  "required": [
    "treeId",
    "options"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | goldenConfigTrees | array | List of all Golden Config trees | 
            
          
          
            Copied to Clipboard
            
            [
  {
    "id": "5c35355dbebaa82eaf8113f0",
    "name": "Cisco Edge - Day 1",
    "deviceType": "f5-big-ip",
    "versions": [
      "draft v4"
    ],
    "created": "2019-04-12T14:42:47.958Z",
    "lastUpdated": "2019-04-12T14:42:47.958Z"
  }
]