Global Filters
Get all Global Filters in a configuration
Global Filters retrieved successfully
GET /api/v4.0/conf/{config}/global-filters HTTP/1.1
Host:
Accept: */*
Global Filters retrieved successfully
{
"total": 1,
"items": [
{
"action": null,
"active": true,
"description": "text",
"id": "text",
"mdate": "text",
"name": "text",
"rule": null,
"source": "text",
"tags": [
"text"
]
}
]
}
Update an existing set of Global Filters for a configuration
{}
Global Filters updated successfully
Validation Error
PUT /api/v4.0/conf/{config}/global-filters HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 137
[
{
"action": null,
"active": true,
"description": "text",
"id": "text",
"mdate": "text",
"name": "text",
"rule": null,
"source": "text",
"tags": [
"text"
]
}
]
{
"message": "Successfully updated entry"
}
Create a complete set of Global Filters for a configuration
{}
Global Filters created successfully
Validation Error
POST /api/v4.0/conf/{config}/global-filters HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 137
[
{
"action": null,
"active": true,
"description": "text",
"id": "text",
"mdate": "text",
"name": "text",
"rule": null,
"source": "text",
"tags": [
"text"
]
}
]
{
"message": "Successfully created entry"
}
Delete all Global Filters in a configuration
Global Filters deleted successfully
Validation Error
DELETE /api/v4.0/conf/{config}/global-filters HTTP/1.1
Host:
Accept: */*
{
"message": "Successfully deleted entry"
}
Get a Global Filter from the specified configuration
Global Filter retrieved successfully
Validation Error
GET /api/v4.0/conf/{config}/global-filters/{entry_id} HTTP/1.1
Host:
Accept: */*
{
"action": null,
"active": true,
"description": "text",
"id": "text",
"mdate": "text",
"name": "text",
"rule": null,
"source": "text",
"tags": [
"text"
]
}
Update an individual Global Filter within a configuration
{}
Global Filter updated successfully
Validation Error
PUT /api/v4.0/conf/{config}/global-filters/{entry_id} HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 135
{
"action": null,
"active": true,
"description": "text",
"id": "text",
"mdate": "text",
"name": "text",
"rule": null,
"source": "text",
"tags": [
"text"
]
}
{
"message": "Successfully updated entry"
}
Create an individual Global Filter within a configuration
{}
Global Filter created successfully
Validation Error
POST /api/v4.0/conf/{config}/global-filters/{entry_id} HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 135
{
"action": null,
"active": true,
"description": "text",
"id": "text",
"mdate": "text",
"name": "text",
"rule": null,
"source": "text",
"tags": [
"text"
]
}
{
"message": "Successfully created entry"
}
Delete an individual Global Filter from the specified configuration
Global Filter deleted successfully
Validation Error
DELETE /api/v4.0/conf/{config}/global-filters/{entry_id} HTTP/1.1
Host:
Accept: */*
{
"message": "Successfully deleted entry"
}
Get list of versions of Global Filters in a configuration
Global Filters version list retrieved successfully
Validation Error
GET /api/v4.0/conf/{config}/global-filters/versions HTTP/1.1
Host:
Accept: */*
{
"total": 1,
"items": [
{
"author": "text",
"email": "[email protected]",
"message": "text",
"date": "2025-09-10T15:58:07.422Z",
"version": "42bcc1282349db1e5791484c3d69420b1d8a8bc1",
"parents": [
"f44073242093228b45bff7eb7a065559fa9b46aa"
]
}
]
}
Get a specific version of a Global Filter
Global Filter retrieved successfully
Validation Error
GET /api/v4.0/conf/{config}/global-filters/versions/{version} HTTP/1.1
Host:
Accept: */*
{
"total": 1,
"items": [
{
"action": null,
"active": true,
"description": "text",
"id": "text",
"mdate": "text",
"name": "text",
"rule": null,
"source": "text",
"tags": [
"text"
]
}
]
}
Set a previous Global Filter version to be the current one
Global Filter reversion was successful
Validation Error
PUT /api/v4.0/conf/{config}/global-filters/versions/{version}/revert HTTP/1.1
Host:
Accept: */*
{
"message": "Successfully updated entry"
}
Last updated
Was this helpful?