Summary
          Get all config parsers.
          Description
          Gets a list of all known config parsers.
          Route
          GET /configuration_manager/configurations/parser
          Roles
          
            admin
apiread
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | options | object | yes | options payload for querying parser documents | 
            
          
          
            Copied to Clipboard
            
            {
  "options": {
    "start": 0,
    "limit": 20,
    "regex": true,
    "filter": {
      "name": "dolore Duis"
    },
    "sort": {
      "name": -1,
      "date": 1
    }
  }
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "options": {
      "title": "options",
      "type": "object",
      "properties": {
        "start": {
          "type": "integer",
          "minimum": 0,
          "examples": [
            0
          ]
        },
        "limit": {
          "type": "integer",
          "minimum": 1,
          "examples": [
            20
          ]
        },
        "regex": {
          "type": "boolean"
        },
        "filter": {
          "type": "object",
          "properties": {
            "name": {
              "type": "string"
            }
          },
          "required": []
        },
        "sort": {
          "type": "object",
          "properties": {
            "name": {
              "enum": [
                -1,
                1
              ]
            },
            "date": {
              "enum": [
                -1,
                1
              ]
            }
          },
          "required": []
        }
      }
    }
  },
  "required": [
    "options"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | response | object | List of config parsers found | 
            
          
          
          
            Copied to Clipboard
            
            {
  "title": "response",
  "type": "array",
  "items": {}
}