/
deleteRecording
deleteRecording
Deletes a recording indicated by a specific ID.
HTTP POST /ctreplay/:domain?/deleteRecording/:documentId
Path variables:
Name | Mandatory | Type | Description |
---|---|---|---|
domain | NO | STRING | Unique domain identifier |
documentId | YES | STRING | Unique recording identifier |
Authorization: BEARER (token returned by EasyCIM SSO)
Response:
Type: JSON
Name | Type | Description |
---|---|---|
result | BOOLEAN | If true, the service response was performed correctly |
error | NULL / STRING | Contains the error description if an error has occurred in the request |
Example:
Request:
http://<hostname>:<port>/ctreplay/default/deleteRecording/5f048b1a2b66ce470c46460d
Response:
{
"result": true,
"error": null
}