2024-06-05 10:19:46 +00:00
|
|
|
---
|
|
|
|
sidebar_position: 1
|
|
|
|
---
|
|
|
|
|
|
|
|
# Send message
|
|
|
|
Sends a message at a selected hour
|
|
|
|
|
|
|
|
|
2024-07-10 11:59:55 +03:00
|
|
|
|
2024-07-10 13:58:29 +03:00
|
|
|
`Function SendMessage(Val Token, Val Channel, Val Text = "", Val SendingDate = "", Val Blocks = "") Export`
|
2024-06-05 10:19:46 +00:00
|
|
|
|
2024-08-13 15:52:26 +03:00
|
|
|
| Parameter | CLI option | Type | Description |
|
|
|
|
|-|-|-|-|
|
|
|
|
| Token | --token | String | Bot token |
|
|
|
|
| Channel | --channel | String | Channel ID |
|
|
|
|
| Text | --text | String | Message text |
|
|
|
|
| SendingDate | --date | Date | Sending date for delayed message |
|
|
|
|
| Blocks | --blocks | Array of Structure | JSON array of block descriptions |
|
2024-06-05 10:19:46 +00:00
|
|
|
|
2024-08-13 15:52:26 +03:00
|
|
|
|
|
|
|
Returns: Map Of KeyAndValue - Serialized JSON response from Slack
|
2024-06-05 10:19:46 +00:00
|
|
|
|
2024-07-10 14:05:58 +03:00
|
|
|
<br/>
|
2024-07-10 11:59:55 +03:00
|
|
|
|
2024-07-10 13:58:29 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
2024-06-05 10:19:46 +00:00
|
|
|
```bsl title="Code example"
|
2024-09-29 12:34:39 +03:00
|
|
|
Token = "xoxb-6965308400114-696804637...";
|
|
|
|
Channel = "C06UFNUTKUL";
|
|
|
|
|
|
|
|
// Text
|
|
|
|
|
|
|
|
Text = "TestMessage1";
|
|
|
|
Result = OPI_Slack.SendMessage(Token, Channel, Text);
|
|
|
|
|
|
|
|
// With attachments (picture block in the example)
|
|
|
|
|
|
|
|
Text = "Message with picture";
|
2024-10-04 13:35:56 +03:00
|
|
|
Image = "https://openyellow.neocities.org/test_data/picture.jpg";
|
2024-09-29 12:34:39 +03:00
|
|
|
BlockArray = New Array;
|
|
|
|
|
|
|
|
Block = OPI_Slack.GenerateImageBlock(Image, "Image");
|
|
|
|
BlockArray.Add(Block);
|
|
|
|
|
|
|
|
Result = OPI_Slack.SendMessage(Token, Channel, Text, , BlockArray);
|
|
|
|
|
|
|
|
// Sheduled
|
|
|
|
|
|
|
|
Text = "Sheduled message";
|
|
|
|
Hour = 3600;
|
|
|
|
Day = 24;
|
|
|
|
|
|
|
|
SendingDate = OPI_Tools.GetCurrentDate() + (Day * Hour);
|
|
|
|
Result = OPI_Slack.SendMessage(Token, Channel, Text, SendingDate);
|
2024-06-05 10:19:46 +00:00
|
|
|
```
|
2024-08-13 15:52:26 +03:00
|
|
|
|
2024-07-10 11:59:55 +03:00
|
|
|
|
2024-06-05 10:19:46 +00:00
|
|
|
|
|
|
|
```sh title="CLI command example"
|
2024-08-13 15:52:26 +03:00
|
|
|
|
|
|
|
oint slack SendMessage --token %token% --channel "C070VPMKN8J" --text "TestMessage" --date %date% --blocks %blocks%
|
2024-06-05 10:19:46 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```json title="Result"
|
2024-08-14 09:06:31 +03:00
|
|
|
{
|
2024-08-13 15:52:26 +03:00
|
|
|
"ok": true,
|
|
|
|
"channel": "C06UFNUTKUL",
|
|
|
|
"ts": "1714146538.221929",
|
|
|
|
"message": {
|
|
|
|
"user": "U06UG1CAYH2",
|
|
|
|
"type": "message",
|
|
|
|
"ts": "1714146538.221929",
|
|
|
|
"bot_id": "B06TZ0MJV5M",
|
|
|
|
"app_id": "A06TYNH45RV",
|
|
|
|
"text": "TestMessage",
|
|
|
|
"team": "T06UD92BS3C",
|
|
|
|
"bot_profile": {
|
|
|
|
"id": "B06TZ0MJV5M",
|
|
|
|
"app_id": "A06TYNH45RV",
|
|
|
|
"name": "OpenIntegrations",
|
|
|
|
"icons": {
|
|
|
|
"image_36": "https://a.slack-edge.com/80588/img/plugins/app/bot_36.png",
|
|
|
|
"image_48": "https://a.slack-edge.com/80588/img/plugins/app/bot_48.png",
|
|
|
|
"image_72": "https://a.slack-edge.com/80588/img/plugins/app/service_72.png"
|
|
|
|
},
|
|
|
|
"deleted": false,
|
|
|
|
"updated": 1713205238,
|
|
|
|
"team_id": "T06UD92BS3C"
|
|
|
|
},
|
|
|
|
"blocks": [
|
|
|
|
{
|
|
|
|
"type": "rich_text",
|
|
|
|
"block_id": "MO6",
|
|
|
|
"elements": [
|
|
|
|
{
|
|
|
|
"type": "rich_text_section",
|
|
|
|
"elements": [
|
|
|
|
{
|
|
|
|
"type": "text",
|
|
|
|
"text": "TestMessage"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2024-06-05 10:19:46 +00:00
|
|
|
```
|