Convert CSV To HTML Table

Convert a CSV object to an HTML Table.
ParameterDescription
CSV ObjectCSV object to convert to an HTML Table format.

Convert CSV To JSON

Convert a CSV object to a JSON object.
ParameterDescription
CSV ObjectCSV object to convert to the JSON format.

Convert EML To JSON

Convert EML data to JSON structure.
ParameterDescription
EML ContentThe EML string which will be converted to JSON.
Include PropertiesSelect which advanced email properties to include in the JSON result.

Advanced email data options:
cc - Carbon copy recipients who receive a visible copy of the email.
bcc - Blind carbon copy recipients who receive a hidden copy of the email.
reply_to - The email address that replies should be sent to, which may differ from the sender.
message_id - Unique identifier assigned to each email message.
in_reply_to - Message ID of the email this message is responding to.
references - Chain of Message IDs showing the conversation history.
attachments - Files included with the email message.
headers - Collection of all metadata fields in the email.
content_type - Format of the email content (e.g., text/plain, text/html).
content_transfer_encoding - Method used to encode the message content for transmission.
mime_version - Version of MIME protocol used to structure the email.
return_path - Email address for handling bounce-back messages.
delivered_to - Final recipient’s email address after any forwarding.
received - Tracking information added by each server that processed the email.
authentication_results - Results of email authentication checks.
dkim_signature - Digital signature to verify the email’s authenticity.
spf - Sender Policy Framework record to prevent email spoofing.

Convert Epoch To ISO 8601

Convert epoch timestamps to ISO 8601 format in the UTC timezone. The action accepts single timestamps, comma-separated lists, or JSON arrays and automatically converts them to standardized datetime format. When a timezone is specified, the action adjusts the timestamps from UTC to the target timezone while maintaining ISO 8601 formatting. Note: When a list of epochs is provided, the output will be in a JSON list format.
ParameterDescription
Epoch TimestampThe epoch timestamp to convert.

Supported Input Format Examples:
1627890123, 1627890723, 1627891323
["1627890123", "1627890723", "1627891323"]
[1627890123, 1627890723, 1627891323]
1627890123
"1627890123"
TimezoneInclude a timezone string to convert the UTC timestamp to a different timezone. The timezone string must be selected from the dropdown list.
Examples: Europe/Andorra, Asia/Kabul.

Convert HTML To Markdown

Convert HTML string to Markdown format.
ParameterDescription
HTML ContentThe HTML string which will be converted to Markdown.

For example, for the HTML string:
<b>Automate Everything</b> With <a href="https://www.blinkops.com/">Blink Ops</a>

The Markdown output will be:
**Automate Everything** With [Blink Ops](https://www.blinkops.com/)

Convert Markdown To HTML

Convert Markdown string to HTML format.
ParameterDescription
Markdown ContentThe Markdown string which will be converted to HTML.

For example, for the Markdown string:
[Blink Ops](https://www.blinkops.com/)

The HTML output will be:
<p><a href="https://www.blinkops.com/">Blink Ops</a></p>

Convert HTML To PDF

Convert HTML to a .pdf file.
ParameterDescription
File IdentifierThe identifier of the file. This will be used as an input for subsequent steps.
HTML ContentThe HTML code to render.
Convert HTML To PDF

Convert HTML To PNG

Convert HTML to a .png file.
ParameterDescription
File IdentifierThe identifier of the file. This will be used as input for subsequent steps.
HTML ContentThe HTML code to render.
Convert HTML To PNG

Convert JSON To CSV

Convert a JSON object to a CSV object.
ParameterDescription
JSON ObjectJSON object to convert to the CSV format.

Convert JSON To YAML

Convert JSON string to YAML.
ParameterDescription
JSON ContentThe JSON string which will be converted to YAML.

Convert YAML To JSON

Convert YAML string to JSON.
ParameterDescription
YAML ContentThe YAML string which will be converted to JSON.