Skip to main content
Wraps raw binary content, such as an image, a PDF, or any file that is not text, into structured data you can carry through your flow. The content is placed under a data field so it can travel alongside the rest of your data. Because some target systems and message formats cannot carry raw binary safely, you can optionally encode the content as Base64 text first.

Fields

Sample data

FieldValue
Process dataEncode Base64
Input:
"Hello world"
Output:
{
    "encoding": "base64",
    "data": "SGVsbG8gd29ybGQ="
}
With “None” selected instead, the same input returns { "data": "Hello world" }.