Get Block Rules History
Returns a list of versions, each denoting a set of the Block Rules Settings. Every time these settings are modified, a new version is created. This endpoint allows for paging through the history of these settings for audit purposes.
Query Parameters
paginationToken string optional
The token to start the page at. The default is the most recent version of settings.
limit int32 optional
The max number of returned versions. The default is 20 and the max is 100.
Responses
200
A successful response.
Schema
Example
Schema
- Array [
- ]
versions object[] optional
blockedIps string[] optional
blockedUas string[] optional
blockedAppIds string[] optional
metadata object optional
lastUpdated date-time optional
When this entity was last updated.
lastUpdatedBy string optional
Who made the last update to this entity.
created date-time optional
When this entity was first created.
createdBy string optional
Who first created this entity.
nextPaginationToken string optional
{
"versions": [
{
"blockedIps": [
"55.55.55.55",
"99.99.99.*"
],
"blockedUas": [
"YandexBot",
"facebot"
],
"blockedAppIds": [],
"metadata": {
"lastUpdated": "2020-10-23T15:05:50.778Z",
"lastUpdatedBy": "bob@example.com",
"created": "2020-10-01T23:53:06.141Z",
"createdBy": "Jane (jane@example.com)"
}
}
],
"next_pagination_token": "v17555fe8105"
}
Loading...