Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

NameDescription
Enable Response FormattingWhen checked, you can start writing bean shell script to format / post process the JSON response.
Script

The "Enable Response Formatting" property must be enabled in order to write bean shell script here.

Injected Variables:

  • data - This is a Map object of the JSON response from the JSON API call.

Expected Return Object:

It is expected to return a Map object that would later on be processed as configured to store to form and/or workflow variables.

Example:

Return the response only for the first item in a JSON array with the object name of "apps".

Code Block
languagejava
return data.get("apps")[0];

Download Sample App

APP_enhanced_json_tool_dx_kb.jwa

Notes:

...