Get Recording Features
Returns the current settings for recording features, such as whether recording is turned on/off.
Query Parameters
platform string optional
Determines which platform to show settings from - web
or mobile
. Defaults to web
.
Responses
200
A successful response.
Schema
Example
Schema
enabled boolean optional
whether recording is enabled at all
consoleWatcher boolean optional
ajaxWatcher boolean optional
resourceUploading boolean optional
recordingShutoff boolean optional
Indicates if all recording has been shut off by FS personnel, usually via admin pages
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.
clientSideRageClick boolean optional
Indicates that client side events should or should not be emitted
{
"enabled": true,
"consoleWatcher": true,
"ajaxWatcher": true,
"resourceUploading": false,
"recordingShutoff": false,
"metadata": {
"lastUpdated": "2021-05-12T15:16:10.268269Z",
"lastUpdatedBy": "Bob (bob@example.com)",
"created": "2020-09-08T15:57:20.830Z",
"createdBy": "jane@example.com"
},
"clientSideRageClick": false
}
Loading...