Rename workflow action property from 'data' to 'payload'#34
Merged
Conversation
The Fusion SOAR workflow editor UI does not support 'data' as a property field name in custom action definitions. Renaming to 'payload' resolves the issue so the workflow renders correctly in the editor. Also improves the workflow e2e test to verify execution actually completes successfully (not just that it was triggered) by calling verifyWorkflowExecutionCompleted().
The request_schema.json property name must match the workflow YAML action property for the Fusion workflow editor to render correctly.
mraible
marked this pull request as ready for review
June 23, 2026 17:20
mraible
enabled auto-merge (squash)
June 23, 2026 18:43
Contributor
Author
|
Blog post has been updated at https://www.crowdstrike.com/tech-hub/ng-siem/ingesting-custom-data-into-falcon-logscale-with-falcon-foundry-functions/ |
prvn
approved these changes
Jun 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The Falcon Fusion SOAR workflow editor UI does not support
dataas a property field name in custom action definitions. This causes the workflow to not render correctly when viewed in the editor — the${json_data}variable reference is corrupted and a "Valid JSON is required" validation error appears.This renames the action property from
datatopayloadacross the workflow YAML, request schema, Python function handler, UI page code, unit tests, and README.Also improves the workflow e2e test to verify execution actually completes successfully by calling
verifyWorkflowExecutionCompleted(), rather than only checking that execution was triggered.Note: The companion blog post will also need updating to reflect the property rename.