mqscript_cjson_stringify
Convert MQScript object variables to JSON strings for data serialization and storage in mobile automation workflows.
Instructions
Convert object to JSON string
Input Schema
Name | Required | Description | Default |
---|---|---|---|
objectVariable | Yes | Object variable name to convert | |
resultVariable | No | Variable name to store JSON string | jsonString |
Input Schema (JSON Schema)
{
"properties": {
"objectVariable": {
"description": "Object variable name to convert",
"type": "string"
},
"resultVariable": {
"default": "jsonString",
"description": "Variable name to store JSON string",
"type": "string"
}
},
"required": [
"objectVariable"
],
"type": "object"
}