show / hide menu

Sub Activity – JSON

The JSON activity has the following sub activities:

  1. JSON Creator: This activity returns JObject that includes string object. It accepts a string in JSON format and can map variables or values to the respective nodes in the string.
  2. JSON Deserialize: This accepts a string in JSON format and converts it into a JSON Object.
  3. JSON Serialize: This activity converts an input Object into a string in JSON format.

Activity NameCommonInputOutput
JSON CreatorLabel – A classifying string applied to an activity which can be renamed by the user. It is the display name.

Disable – The user can enable or disable the activity.

ContinueOnError – It specifies the remaining activities to be executed even when one fails. This field supports only Boolean values (True or False). By default, the value is false so execution terminates when an error occurs.

Private – If selected, the log will not be shown in BOT Manager.
 
Options – Creates a string in JSON format. It allows you to map or assign values to the corresponding nodes in the string.JSONObject – The resulting JSON object that is stored in an object variable.
JSON DeserializeLabel – A classifying string applied to an activity which can be renamed by the user. It is the display name.

Disable – The user can enable or disable the activity.

ContinueOnError – It specifies the remaining activities to be executed even when one fails. This field supports only Boolean values (True or False). By default, the value is false so execution terminates when an error occurs.

Private – If selected, the log will not be shown in BOT Manager.
 
JSONString – The JSON string that you want to convert to an object.JSONObject – The resulting JSON object that is stored in an object variable.
JSON SerializeLabel – A classifying string applied to an activity which can be renamed by the user. It is the display name.

Disable – The user can enable or disable the activity.

ContinueOnError – It specifies the remaining activities to be executed even when one fails. This field supports only Boolean values (True or False). By default, the value is false so execution terminates when an error occurs.

Private – If selected, the log will not be shown in BOT Manager.
 
Object – The JSON object you want to serialize.JSONString – The resultant JSON string is stored.