Get Recording Features History
Returns a list of versions, each denoting a set of the Recording Features 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
The token to start the page at. The default is the most recent version of settings.
The max number of returned versions. The default is 20 and the max is 100.
Determines which platform to show settings from - web
or mobile
. Defaults to web
.
A successful response.
Schema
- Array [
- ]
versions object[] optional
whether recording is enabled at all
Indicates if all recording has been shut off by FS personnel, usually via admin pages
metadata object optional
When this entity was last updated.
Who made the last update to this entity.
When this entity was first created.
Who first created this entity.
Indicates that client side events should or should not be emitted
{
"versions": [
{
"enabled": true,
"consoleWatcher": true,
"ajaxWatcher": true,
"resourceUploading": false,
"recordingShutoff": false,
"metadata": {
"lastUpdated": "2021-05-12T15:16:10.268269Z",
"lastUpdatedBy": "bob@example.com",
"created": "2020-09-08T15:57:20.830Z",
"createdBy": "bob@example.com"
},
"clientSideRageClick": false
},
{
"enabled": true,
"consoleWatcher": true,
"ajaxWatcher": true,
"resourceUploading": false,
"recordingShutoff": false,
"metadata": {
"lastUpdated": "2021-05-12T15:15:53.309243Z",
"lastUpdatedBy": "bob@example.com",
"created": "2020-09-08T15:57:20.830Z",
"createdBy": "bob@example.com"
},
"clientSideRageClick": true
}
],
"next_pagination_token": "v17861a0f56b"
}