EnVauE
BuildShip12mo ago
3 replies
EnVau

JSON Output in Flowbuilder 2.0

I am currently working with the Flowbuilder 2.0 and have encountered an issue that I cannot resolve on my own. It concerns the configuration of the output in the "Edit Output" section. My goal is to generate a JSON output like this:

{
"body": "EntwurfGruppe/XYZ123",
"status": "200"
}

However, the label I am required to specify in the "Edit Output" section is automatically added as an additional key in the JSON output. This results in a nested structure like this:

{
"body": {
"label": "EntwurfGruppe/XYZ123"
},
"status": "200" }

Here is what I have tried so far to achieve the desired result:
1. Adjusting the label (e.g., changing it to body or other names).
2. Switching the output type from "Text" to "JavaScript" to work with template literals.
3. Reviewing the documentation and forums for any way to disable or bypass the mandatory label.

Unfortunately, despite my efforts, I have been unable to produce the desired JSON output. Since this functionality is essential for my workflow, I kindly ask if there is a way to remove the label from the output or if there is a workaround that I might have missed.

Thank you very much in advance for your support.
Was this page helpful?