(30033) Recording Download Completed

When a recording file is successfully downloaded via the API in asynchronous mode, the PBX will send an event report to the third-party application.

Report parameters

Parameter Type Description
type Integer Event ID.
sn String PBX's serial number.
msg Object <Recording_Info> The detailed information.
Recording_Info
Parameter Type Description
key String Event name.
result String Result of the recording download.
  • SUCCESS: Succeed.
  • FAILURE: Failed.
file String Recording file name.
download_resource_url String The recording download URL.
error String Returned error message.

Report example

{
    "type": 30033,
    "sn": "3631A2124788",
    "msg": {
        "key": "recording_download",
        "result": "success",
        "file": "20250819095658-1755568612.24-2192-2193-Internal.mp3",
        "download_resource_url": "/api/downloadattachment/Recording-X.20.0.X-download-20250822182917-Ib9fcemxhk4X1RRj.mp3",
        "error": ""
     }
}