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": "mollit Lorem deserunt minim magna",
"name": "ipsum ea culpa laborum laboris"
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"filter": {
"title": "filter",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
}
},
"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"
}
}
}