Sign inGet started

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.
GET
/workspaces/{workspaceId}/channels/{channelId}/calls/{callId}/recordings
Get a list of recordings from a channel call
Parametri di query
limit
integer
Limits the number of results to return.
pageToken
string
The cursor that keeps track of the current position in the results.
Payload della risposta
results
array of object
Mostra attributi secondari
results.id
string
obbligatorio
results.callId
string
obbligatorio
results.channelId
string
results.status
string
obbligatorio
Possible values: accepted, ongoing, paused, completed, available, absent, failed
results.origin
string
obbligatorio
Possible values: call-command-record, call-command-record-call, create-call, bridge-call
results.duration
integer
results.stereo
boolean
results.endCause
string
results.createdAt
string
obbligatorio
results.updatedAt
string
obbligatorio
results.startedAt
string
results.endedAt
string
nextPageToken
string
The token that can be passed as pageToken in URL to retrieve the next set of results. If missing, no more results to display.
Esempio di codice
curl -X GET 'https://api.bird.com/workspaces/{workspaceId}/channels/{channelId}/calls/{callId}/recordings' \
  -H 'Authorization: AccessKey YOUR_ACCESS_KEY'

Example 1: Get the list of call recordings

You might consider filtering the recording list based on a limit for example.
Esempio di codice
curl "https://api.bird.com/workspaces/{workspaceId}/channels/{channelId}/calls/{callId}/recordings" \
     -H "Authorization: AccessKey YOUR_SECRET_TOKEN"