Bandwidth.Resources.Calls.Recordings

Access recordings associated with a specific call.

Summary

list(client, call_id)

Retrieve all recordings related to the call

Functions

list(client, call_id)

Specs:

  • list(Client.t, binary) :: Client.response

Retrieve all recordings related to the call.

Example:

case Bandwidth.Resources.Calls.Recordings.list(client, "some-call-id") do
  {:ok, {200, recordings, _}} -> IO.inspect recordings
  {:error, reason}            -> IO.puts "Error: #{reason}"
end

Bandwidth Docs