List call recordings of a call

This endpoint lists all active call recordings of an active call. If you want to list recordings from a completed call, you should use the Recordings API.

Command record a call

type: object
title: ChannelCallRecordingList
description: A list of channel call recordings
properties:
  results:
    type: array
    items:
      $ref: './CallRecording.yml'

Example 1: Get the list of call recordings

You might consider filtering the recording list based on a limit for example.

curl "/workspaces/{workspaceId}/channels/{channelId}/calls/{callId}/recordings" \
     -H 'Authorization: Bearer {Token}'

Last updated