1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-05-21 22:43:09 +02:00
OpenIntegrations/docs/en/md/Slack/Block-formation/Generate-image-block.md

50 lines
1.1 KiB
Markdown
Raw Normal View History

---
sidebar_position: 1
---
# Generate image block
Generates a block with an image to add to the message block array
2024-07-10 13:58:29 +03:00
`Function GenerateImageBlock(Val URL, Val AlternateText = "") Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| URL | --picture | String | Image URL |
| AlternateText | --alt | String | Alternate text of the image |
Returns: Map Of KeyAndValue - Image block
2024-07-10 14:05:58 +03:00
<br/>
2024-07-10 13:58:29 +03:00
```bsl title="Code example"
Text = "Alpaca picture";
URL = "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/Media/logo.png?v1";
Response = OPI_Slack.GenerateImageBlock(URL, Text); //Map
Response = OPI_Tools.JSONString(Response); //JSON string
```
```sh title="CLI command example"
oint slack GenerateImageBlock --picture "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/Media/logo.png?v1" --alt %alt%
```
```json title="Result"
2024-08-13 16:49:40 +03:00
{
"alt_text": "Yo",
"image_url": "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/Media/logo.png?v1",
"type": "image"
}
2024-08-13 16:49:40 +03:00
```