Skip to main content
Takes a piece of text and stores it, untouched, under a key you choose. Use this when a value arrives as one plain string, such as a note, a reference code, or the raw body of a message, and you simply want to place it under a named field instead of reformatting or parsing it. Nothing about the text is interpreted; the whole string is kept as-is and wrapped under the target key you set. If the incoming text is in a character set other than UTF-8, you can turn on the encoding option to have it converted first.

Fields

Sample data

FieldValue
Target keymessage
Input:
{
    "note": "Order received from warehouse 7"
}
Output:
{
    "note": {
        "message": "Order received from warehouse 7"
    }
}
The text read from note is kept exactly as it was and placed under the message key.