[9.4] [One Workflow] Add form_data support to kibana.request step (#265671)#266438
Merged
kibanamachine merged 1 commit intoelastic:9.4from Apr 29, 2026
Merged
Conversation
…265671) ## Summary - Adds `form_data` param to the `kibana.request` workflow step, enabling multipart/form-data uploads — specifically to support `POST /api/saved_objects/_import` (and any other Kibana API that uses `--form file=@...` in curl). - Fixes `Content-Type: application/json` being incorrectly set inside `getAuthHeaders()` (an auth-unrelated header); it is now set explicitly only in the JSON-body branches. - Fixes `method` being required in the `kibana.request` connector schema when the builder already defaults it to `GET`. ## How it works ```yaml - name: import_saved_objects type: kibana.request with: method: POST path: /api/saved_objects/_import?overwrite=true form_data: file: content: "{{ inputs.ndjson }}" filename: export.ndjson content_type: application/ndjson ``` `form_data` is mutually exclusive with `body` — using both throws a clear error at runtime. ## Use case Enables hub-and-spoke dashboard sync across ECH clusters by exporting NDJSON from a source cluster and importing it into replica clusters entirely within a workflow — no external tooling required. Made with [Cursor](https://cursor.com) --------- Co-authored-by: Marco Liberati <dej611@users.noreply.github.com> (cherry picked from commit 37ad91d)
Contributor
Author
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.
Backport
This will backport the following commits from
mainto9.4:Questions ?
Please refer to the Backport tool documentation