Data export of recordings
Customers can request an export of their data in machine-readable format upon contract termination, and Unique will give the customer access to a storage account that has the exported data available to be transferred securely to the customer.
Be aware that by exporting the data from our system, the access control previously protecting recordings from other users is not possible anymore. The users that get access to the data export can see and access all recordings.
Exported files
Recording video file
For every recording you will receive an mp4
file with the recording video itself, named after the our internal recording ID (the same ID you previously saw in the URL of the recording on the UNIQUE website). An example for this would be:
cm8ixfdvd00140cjpbjuz8wfs.mp4
Recording details file
For every recording you will receive a details JSON file with meta information about the recording, which will be named after the recording ID with the suffix _details.json
. The corresponding example for the video file would be:
cm8ixfdvd00140cjpbjuz8wfs_details.json
The content of this file is as follows:
{
"recordingId": "<Internal ID of the recording, same as file name>",
"subject": "<Subject of the recording>",
"recordingStartTime": "<Start time of the recording in ISO format>",
"recordingEndTime": "<End time of the recording in ISO format>",
"spokenLanguage": "<Language spoken in recording>",
"source": "<Source of the recording UNKNOWN/TEAMS/ZOOM/GOOGLE_MEET>",
"owner": {
"name": "<Name of recording owner>",
"email": "<Email address of recording owner>"
}
}
Transcript details file
For every recording you will receive a transcript JSON file with the transcript of the call, if it exists. If will also be named after the recording ID with the suffix _transcript.json
. The corresponding example for the video file would be:
cm8ixfdvd00140cjpbjuz8wfs_transcript.json
The content of this file is an array
of separate transcript items, each containing the following attributes:
{
"language": "<Detected language of the text>",
"name": "<Detected name of the participant speaking>",
"text": "<Detected spoken words>",
"start": "<Relative start time of the text in the recording in seconds>",
"end": "<Relative end time of the text in the recording in seconds>"
}
Start and end times are relative to the start of the recording, starting at 0 seconds.
Related content
© 2025 Unique AG. All rights reserved. Privacy Policy – Terms of Service