summaryrefslogtreecommitdiff
path: root/rest-api
diff options
context:
space:
mode:
Diffstat (limited to 'rest-api')
-rw-r--r--rest-api/api-docs/recordings.json32
1 files changed, 32 insertions, 0 deletions
diff --git a/rest-api/api-docs/recordings.json b/rest-api/api-docs/recordings.json
index 51f0a21f4..d173ac98e 100644
--- a/rest-api/api-docs/recordings.json
+++ b/rest-api/api-docs/recordings.json
@@ -70,6 +70,38 @@
]
},
{
+ "path": "/recordings/stored/{recordingName}/file",
+ "description": "The actual file associated with the stored recording",
+ "operations": [
+ {
+ "httpMethod": "GET",
+ "summary": "Get the file associated with the stored recording.",
+ "nickname": "getStoredFile",
+ "responseClass": "binary",
+ "parameters": [
+ {
+ "name": "recordingName",
+ "description": "The name of the recording",
+ "paramType": "path",
+ "required": true,
+ "allowMultiple": false,
+ "dataType": "string"
+ }
+ ],
+ "errorResponses": [
+ {
+ "code": 403,
+ "reason": "The recording file could not be opened"
+ },
+ {
+ "code": 404,
+ "reason": "Recording not found"
+ }
+ ]
+ }
+ ]
+ },
+ {
"path": "/recordings/stored/{recordingName}/copy",
"description": "Copy an individual recording",
"operations": [