Webex · Schema
ReassignRecordingObject
Reassign Recording details
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| ownerEmail | string | Recording owner email. |
| ownerID | string | Recording owner ID. Can be a user, a virtual line, or a workspace. |
| recordingIds | array | List of recording identifiers to be reassigned. |
| reassignOwnerEmail | string | New owner of the recordings. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ReassignRecordingObject",
"title": "ReassignRecordingObject",
"type": "object",
"description": "Reassign Recording details",
"required": [
"reassignOwnerEmail"
],
"properties": {
"ownerEmail": {
"type": "string",
"example": "[email protected]",
"description": "Recording owner email."
},
"ownerID": {
"type": "string",
"example": "3c6aa94c-e1f9-4f10-579f-e5582de5374f",
"description": "Recording owner ID. Can be a user, a virtual line, or a workspace."
},
"recordingIds": {
"type": "array",
"items": {
"type": "string",
"example": "81bb582c-e93e-40aa-abf6-962b620f6db4,81bb582c-e93e-40aa-abf6-962b620f6db5"
},
"description": "List of recording identifiers to be reassigned."
},
"reassignOwnerEmail": {
"type": "string",
"example": "[email protected]",
"description": "New owner of the recordings."
}
}
}