Direct URL for downloading call recordings from PBX

Is there a way to download call recordings directly without going through the Call Recordings report module? I don’t see anything in the REST or GQL APIs.

I believe you can access them from the UCP but that may not be what you’re after as you have to be logged in as that user in order to view the recordings.

Assuming a very fast and basic approach:

python -m SimpleHTTPServer 8000

Python SimpleHTTPServer - Python HTTP Server | DigitalOcean

  • In the directory, where you start the server, e.g., if you are in /var/spool/asterisk/monitor, run python -m SimpleHTTPServer 8000, then all files stored in this directory will be available.

You could abstract this idea to take a similar approach with any added security you desire.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.