Summary
          Get a config parser.
          Description
          Get a defined Config Parser from the database.
          Route
          POST /configuration_manager/configurations/parser/search
          Roles
          
            admin
apiread
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | filter | object | yes | - | 
    | options | object | yes | - | 
            
          
          
            Copied to Clipboard
            
            {
  "filter": {
    "id": "labore minim",
    "name": "eu minim sed pariatur non"
  }
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "filter": {
      "title": "filter",
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "name": {
          "type": "string"
        }
      },
      "required": []
    },
    "options": {
      "title": "options",
      "type": "object",
      "properties": {}
    }
  },
  "required": [
    "filter",
    "options"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | data | object | - | 
            
          
          
          
            Copied to Clipboard
            
            {
  "title": "data",
  "type": "object",
  "properties": {
    "parser": {
      "type": "object"
    }
  },
  "required": []
}