1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-17 12:06:34 +02:00

63 lines
1.4 KiB
Plaintext
Raw Normal View History

2024-10-15 10:16:04 +03:00
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
---
sidebar_position: 3
---
# Set message reaction
Set or remove reaction mark on the message
`Function SetMessageReaction(Val URL, Val MessageID, Val Token = "") Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| URL | --url | String | URL of webhook or a Bitrix24 domain, when token used |
| MessageID | --message | String, Number | Message ID |
| 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.message.like](https://dev.1c-bitrix.ru/learning/course/?COURSE_ID=93&LESSON_ID=12121)
:::
<br/>
```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/1o2...";
MessageID = "18126";
Result = OPI_Bitrix24.SetMessageReaction(URL, MessageID);
URL = "b24-ar17wx.bitrix24.by";
Token = "21750a67006e9f06006b12e400000001000...";
MessageID = "18128";
Result = OPI_Bitrix24.SetMessageReaction(URL, MessageID, Token);
```
```json title="Result"
{
"result": true,
"time": {
"start": 1728454910.6457,
"finish": 1728454910.70529,
"duration": 0.0595870018005371,
"processing": 0.0330779552459717,
"date_start": "2024-10-09T09:21:50+03:00",
"date_finish": "2024-10-09T09:21:50+03:00",
"operating_reset_at": 1728455510,
"operating": 0
}
}
```