Markdown

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

![Alt Text](https://www.authvia.com/wp-content/uploads/2023/03/whitegreen-1024x197.png)

Dividers/Horizontal Lines

---
***
___

No products are required to use this action.

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)

NameTypeDescriptionRules
markdownstring(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 action to a business process or blueprint.

{
    "type": "markdown",
    "union": 1,
    "features": {
        "markdown": "# Title\n\nParagraph\n * bullet\n * bullet 2"
    }
}