1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-02 22:05:37 +02:00

139 lines
4.4 KiB
Markdown
Raw Normal View History

---
sidebar_position: 5
---
# Send file
Send disk file to chat
`Function SendFile(Val URL, Val ChatID, Val FileID, Val Description = "", Val Token = "") Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| URL | --url | String | URL of webhook or a Bitrix24 domain, when token used |
| ChatID | --chat | String, Number | Chat ID |
| FileID | --fileid | String, Number | File ID from UploadFileToFolder method |
| Description | --description | String | File description |
| Token | --token | String | Access token, when app auth method used |
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
<br/>
:::tip
Method at API documentation: [im.disk.file.commit](https://dev.1c-bitrix.ru/learning/course/index.php?COURSE_ID=93&LESSON_ID=11485)
:::
<br/>
```bsl title="Code example"
2024-09-24 11:38:18 +03:00
URL = "https://b24-ar17wx.bitrix24.by/rest/1/1o2...";
2024-10-15 10:07:27 +03:00
ChatID = "1006";
File = "https://api.athenaeum.digital/test_data/document.docx"; // Binary Data, URL or path to file
2024-08-13 16:47:32 +03:00
Description = "Very important file";
Directory = OPI_Bitrix24.GetChatFilesFolder(URL, ChatID);
FolderID = Directory["result"]["ID"];
UploadedFile = OPI_Bitrix24.UploadFileToFolder(URL, "Imortant doc.docx", File, FolderID);
FileID = UploadedFile["result"]["ID"];
Result = OPI_Bitrix24.SendFile(URL, ChatID, FileID, Description);
2024-09-24 11:38:18 +03:00
URL = "b24-ar17wx.bitrix24.by";
2024-10-15 10:07:27 +03:00
Token = "21750a67006e9f06006b12e400000001000...";
ChatID = "1008";
2024-08-13 16:47:32 +03:00
Directory = OPI_Bitrix24.GetChatFilesFolder(URL, ChatID, Token);
FolderID = Directory["result"]["ID"];
UploadedFile = OPI_Bitrix24.UploadFileToFolder(URL, "Imortant doc.docx", File, FolderID, Token);
FileID = UploadedFile["result"]["ID"];
Result = OPI_Bitrix24.SendFile(URL, ChatID, FileID, Description, Token);
```
2024-10-15 09:53:37 +03:00
```json title="Result"
2024-08-14 09:06:31 +03:00
{
2024-10-06 16:55:08 +03:00
"result": {
"FILES": {
2024-10-09 09:42:00 +03:00
"upload12614": {
"id": 12614,
"chatId": 988,
2024-10-06 16:55:08 +03:00
"date": {},
"type": "file",
"name": "Imortant doc.docx",
"extension": "docx",
"size": 24071,
"image": false,
"status": "done",
"progress": 100,
"authorId": 1,
"authorName": "Антон Титовец",
"urlPreview": "",
2024-10-09 09:42:00 +03:00
"urlShow": "/bitrix/services/main/ajax.php?action=disk.api.file.download&SITE_ID=s1&humanRE=1&fileId=12614&fileName=Imortant%20doc.docx",
"urlDownload": "/bitrix/services/main/ajax.php?action=disk.api.file.download&SITE_ID=s1&humanRE=1&fileId=12614&fileName=Imortant%20doc.docx",
2024-10-06 16:55:08 +03:00
"viewerAttrs": {
"viewer": null,
"viewerType": "cloud-document",
2024-10-09 09:42:00 +03:00
"src": "/bitrix/services/main/ajax.php?action=disk.api.file.download&SITE_ID=s1&humanRE=1&fileId=12614&fileName=Imortant%20doc.docx",
2024-10-06 16:55:08 +03:00
"viewerTypeClass": "BX.Messenger.Integration.Viewer.OnlyOfficeChatItem",
"viewerSeparateItem": true,
"viewerExtension": "im.integration.viewer",
2024-10-09 09:42:00 +03:00
"objectId": "12614",
"imChatId": 988,
2024-10-06 16:55:08 +03:00
"title": "Imortant doc.docx",
2024-10-09 09:42:00 +03:00
"actions": "[{\"type\":\"download\"},{\"type\":\"copyToMe\",\"text\":\"Сохранить на Битрикс24 Диск\",\"action\":\"BXIM.disk.saveToDiskAction\",\"params\":{\"fileId\":\"12614\"},\"extension\":\"disk.viewer.actions\",\"buttonIconClass\":\"ui-btn-icon-cloud\"}]"
2024-10-06 16:55:08 +03:00
}
}
},
"DISK_ID": [
2024-10-09 09:42:00 +03:00
"12614"
],
"FILE_MODELS": {
2024-10-09 09:42:00 +03:00
"upload12614": {
"id": 12614,
2024-10-06 16:55:08 +03:00
"name": "Imortant doc.docx",
"createTime": {},
"updateTime": {},
"deleteTime": null,
"code": null,
"xmlId": null,
"storageId": 6,
2024-10-09 09:42:00 +03:00
"realObjectId": 12614,
"parentId": 12610,
2024-10-06 16:55:08 +03:00
"deletedType": 0,
"createdBy": "1",
"updatedBy": "1",
"deletedBy": "0",
"typeFile": 4,
"globalContentVersion": 2,
2024-10-09 09:42:00 +03:00
"fileId": 8688,
2024-10-06 16:55:08 +03:00
"size": 24071,
2024-10-09 09:42:00 +03:00
"etag": "46a4f72f7b8b92b6f5f2892c05e7faa7",
2024-10-06 16:55:08 +03:00
"links": {
2024-10-09 09:42:00 +03:00
"download": "/bitrix/services/main/ajax.php?action=disk.file.download&SITE_ID=s1&fileId=12614",
"showInGrid": "/bitrix/tools/disk/focus.php?objectId=12614&action=showObjectInGrid&ncc=1"
2024-10-06 16:55:08 +03:00
}
}
},
2024-10-09 09:42:00 +03:00
"MESSAGE_ID": 17762
2024-10-06 16:55:08 +03:00
},
"time": {
2024-10-09 09:42:00 +03:00
"start": 1728454913.41449,
"finish": 1728454913.53076,
"duration": 0.116268157958984,
"processing": 0.0841860771179199,
"date_start": "2024-10-09T09:21:53+03:00",
"date_finish": "2024-10-09T09:21:53+03:00",
"operating_reset_at": 1728455513,
"operating": 0
2024-10-06 16:55:08 +03:00
}
}
```