1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-07-01 00:55:36 +02:00
Files
OpenIntegrations/docs/en/md/Slack/Block-formation/Generate-image-block.md
Vitaly the Alpaca (bot) 9c977d53e1 Main build (Jenkins)
2024-10-06 16:55:08 +03:00

46 lines
994 B
Markdown

---
sidebar_position: 1
---
# Generate image block
Generates a block with an image to add to the message block array
`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
<br/>
```bsl title="Code example"
Image = "https://openyellow.neocities.org/test_data/picture.jpg";
Result = OPI_Slack.GenerateImageBlock(Image, "Image");
```
```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"
{
"type": "image",
"image_url": "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/picture.jpg",
"alt_text": "Image"
}
```