1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-18 23:48:56 +02:00
OpenIntegrations/docs/en/md/Slack/Block-formation/Generate-image-block.md

49 lines
1.0 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
*Function GenerateImageBlock(Val URL, Val AlternateText = "") Export*
| Parameter | CLI option | Type | Destination |
|-|-|-|-|
| URL | --picture | String | Image URL |
| AlternateText | --alt | String | Alternate text of the image |
Returns: Key-Value Pair - Image block
```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"
{
"alt_text": "Yo",
"image_url": "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/Media/logo.png?v1",
"type": "image"
}
```