Documentation

disk.file.getExternalLink

disk.file.getExternalLink(
   id
)

The method returns public link by file ID. Public links allow accessing files for download only when user entered into the public link details.

Response example:

"result": "https://test.bitrix24.ru/~Fjruf2"

Parameters

Parameter Description
id File ID.

Example

BX24.callMethod(
        "disk.file.getExternalLink",
       {
           id: 10
       },
       function (result)
       {
           if (result.error())
               console.error(result.error());
           else
               console.dir(result.data());
       }
);


© «Bitrix24», 2001-2024
Up