See the supported connectors for Application Integration.

TO_JSON function

TO_JSON function

Function Name Description Usage Input parameter Return value
TO_JSON Converts the current value to a JSON object. TO_JSON() N/A A JSON object.

Supported data type

The TO_JSON function supports the following data types:

  • Boolean
  • Boolean array
  • Double
  • Double array
  • Integer
  • Integer array
  • String
  • String array

Example: Convert a string to a JSON

Sample data: $var1$ = "{product: "cake", id: 21, price: 5}"

Usage: $var1$.TO_JSON()

Convert var1 to JSON.

Output: {product: "cake", id: 21, price: 5}

Recommendation