Voice Call Recordings

Entity description

An ExternalRecording entity represents a recording resource stored externally, containing information such as the recording's URL, size, duration, and timestamps for creation, update, and deletion.

Properties

NameDescriptionTypeExample
external_uidThe unique identifier of the external recording resourcestringabc123xyz
external_urlThe URL to access the external recording resourcestringhttps://example.com/recordings/abc123xyz
sizeThe size of the recording in bytesnumber1048576
durationThe duration of the recording in secondsnumber300
started_atThe start date and time of the recording in ISO 8601 formatstring2024-03-20T12:34:56Z
storage_blobThe storage blob identifier if stored in a cloud storage servicestringstorage_blob_id_123
created_atThe date and time when the recording entity was created in ISO 8601 formatstring2024-01-01T09:00:00Z
updated_atThe date and time when the recording entity was last updatedstring2024-03-20T12:34:56Z
deleted_atThe date and time when the recording was deleted (null if not deleted)stringnull

Example

{
  "external_uid": "abc123xyz",
  "external_url": "https://example.com/recordings/abc123xyz",
  "size": 1048576,
  "duration": 300,
  "started_at": "2024-03-20T12:34:56Z",
  "storage_blob": "storage_blob_id_123",
  "created_at": "2024-01-01T09:00:00Z",
  "updated_at": "2024-03-20T12:34:56Z",
  "deleted_at": null
}