1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-16 11:38:11 +02:00
OpenIntegrations/docs/en/md/Bitrix24/Catalogs-managment/Make-folder-copy.md
2024-08-14 09:06:31 +03:00

2.3 KiB

sidebar_position
3

Copy folder

Copy one folder to another

Function MakeFolderCopy(Val URL, Val FolderID, Val DestinationID, Val Token = "") Export

Parameter CLI option Type Description
URL --url String URL of webhook or a Bitrix24 domain, when token used
FolderID --folderid String, Number Folder identifier
DestinationID --tagetid String, Number ID of target folder
Token --token String Access token, when app auth method used

Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API


:::tip Method at API documentation: disk.folder.copyto :::

    DestinationID = "5018";
    FolderID      = "5020";

    URL = "https://b24-ar17wx.bitrix24.by/rest/1/f2pp...";

    Result = OPI_Bitrix24.MakeFolderCopy(URL, FolderID, DestinationID);

    DestinationID = "5020";
    FolderID      = "5018";

    URL   = "b24-ar17wx.bitrix24.by";
    Token = "fe3fa966006e9f06006b12e400000001000...";

    Result = OPI_Bitrix24.MakeFolderCopy(URL, FolderID, DestinationID, Token);

    Check_BitrixObject(Result);
    
  oint bitrix24 MakeFolderCopy --url "b24-ar17wx.bitrix24.by" --folderid "5018" --tagetid "5020" --token "fe3fa966006e9f06006b12e400000001000..."

{
  "result": {
  "ID": 1732,
  "NAME": "New subfolder 2",
  "CODE": null,
  "STORAGE_ID": "3",
  "TYPE": "folder",
  "REAL_OBJECT_ID": 1732,
  "PARENT_ID": "1726",
  "DELETED_TYPE": 0,
  "CREATE_TIME": "2024-07-03T14:42:46+00:00",
  "UPDATE_TIME": "2024-07-03T14:42:46+00:00",
  "DELETE_TIME": null,
  "CREATED_BY": "1",
  "UPDATED_BY": "1",
  "DELETED_BY": null,
  "DETAIL_URL": "https://b24-ar17wx.bitrix24.by/docs/path/New catalog/New subfolder/New subfolder 2"
  },
  "time": {
  "start": 1720017765.97028,
  "finish": 1720017766.08005,
  "duration": 0.109767913818359,
  "processing": 0.0799601078033447,
  "date_start": "2024-07-03T14:42:45+00:00",
  "date_finish": "2024-07-03T14:42:46+00:00",
  "operating_reset_at": 1720018366,
  "operating": 0
  }
  }