Enables the display of acceptable markdown in the business process experience.
When you want to display a rich set of text to a user, this is your action. Using markdown you can get headings, bullets, paragraphs and more!
Supported Markdown
Headings
# Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6
Text formatting
*italic*
**bold**
***bold and italic***
Links
[Link Text](https://wallet.authvia.com)
Lists
- Bullet Item 1
- Bullet Item 2
1. First item
2. Second item
Images

Dividers/Horizontal Lines
---
***
___
Related Actions
This action pairs well with the following actions:
Union (required)
This action must be unioned.
Macro level details for how union attribute behaves can be found within the Union documentation.
Features (required)
Name | Type | Description | Rules |
---|---|---|---|
markdown | string | (required) The markdown to display. No script tags or HTML is supported. Examples: "# Title\n\nParagraph\n * bullet\n * bullet 2". | MaxLength: 65536 |
Example
Below is an example payload for adding an Markdown action to a business process or blueprint.
{
"type": "markdown",
"union": 1,
"features": {
"markdown": "# Title\n\nParagraph\n * bullet\n * bullet 2"
}
}