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

91 lines
2.4 KiB
Plaintext
Raw Normal View History

2024-10-15 10:50:56 +03:00
---
2024-10-15 10:16:04 +03:00
sidebar_position: 9
---
2024-10-15 10:50:56 +03:00
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
2024-10-15 10:16:04 +03:00
# Change chat picture
Setup new chat picture
`Function ChangeChatPicture(Val URL, Val ChatID, Val Image, Val Token = "") Export`
2024-10-15 15:15:47 +03:00
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| URL | --url | String | ✔ | URL of webhook or a Bitrix24 domain, when token used |
| ChatID | --chat | String, Number | ✔ | Chat ID |
| Image | --picture | String, BinaryData | ✔ | Picture data |
| Token | --token | String | ✖ | Access token, when app auth method used |
2024-10-15 10:16:04 +03:00
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
<br/>
:::tip
2024-11-21 14:55:35 +03:00
Method at API documentation: [im.chat.updateAvatar](https://dev.1c-bitrix.ru/learning/course/?COURSE_ID=93&LESSON_ID=12109)
2024-10-15 13:51:58 +03:00
Parameters with Binary data type can also accept file paths on disk and URLs
2024-10-15 10:16:04 +03:00
:::
<br/>
2024-12-16 19:38:57 +03:00
2024-10-15 21:15:56 +03:00
```bsl title="1C:Enterprise/OneScript code example"
2024-12-08 12:04:47 +03:00
URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5...";
2024-12-09 15:33:55 +03:00
ChatID = "1598";
2024-10-15 10:16:04 +03:00
Image = "https://api.athenaeum.digital/test_data/picture2.jpg";
Result = OPI_Bitrix24.ChangeChatPicture(URL, ChatID, Image);
URL = "b24-ar17wx.bitrix24.by";
2024-12-09 15:33:55 +03:00
Token = "a8e65667006e9f06006b12e400000001000...";
ChatID = "1600";
2024-10-15 10:16:04 +03:00
Result = OPI_Bitrix24.ChangeChatPicture(URL, ChatID, Image, Token);
```
2024-10-20 22:36:03 +03:00
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint bitrix24 ChangeChatPicture \
2024-10-22 08:59:24 +03:00
--url "b24-ar17wx.bitrix24.by" \
2024-12-10 09:08:34 +03:00
--chat 1616 \
2024-10-22 08:59:24 +03:00
--picture "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/picture2.jpg" \
--token "***"
2024-10-20 22:36:03 +03:00
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint bitrix24 ChangeChatPicture ^
2024-10-22 08:59:24 +03:00
--url "b24-ar17wx.bitrix24.by" ^
2024-12-10 09:08:34 +03:00
--chat 1616 ^
2024-10-22 08:59:24 +03:00
--picture "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/picture2.jpg" ^
--token "***"
2024-10-20 22:36:03 +03:00
```
</TabItem>
</Tabs>
2024-10-15 10:16:04 +03:00
```json title="Result"
{
"result": true,
"time": {
"start": 1728454891.85277,
"finish": 1728454893.18775,
"duration": 1.33497500419617,
"processing": 1.30738711357117,
"date_start": "2024-10-09T09:21:31+03:00",
"date_finish": "2024-10-09T09:21:33+03:00",
"operating_reset_at": 1728455491,
"operating": 1.30736899375916
}
}
```