Skip to main content
Converts a value into a string (“abc”, “example”). Use this when a value should be plain text but arrives as a number or a true/false flag, for example a product code such as 100245 that needs to keep its exact written form rather than be treated as a number. A number like 100245 becomes the text "100245", and a true/false flag becomes "1" for true or an empty text for false.

Fields

This mapper has no settings to configure. Point it at the value you want to convert and it does the rest.

Sample data

FieldValue
(no settings)
Input:
{
    "sku": 100245
}
Output:
{
    "sku": "100245"
}
The value is converted to text. When that text happens to look like a number (as with 100245), some preview screens may still show it without quotation marks, but it is stored and sent on as text.