takbb
October 22, 2025, 11:55am
5
Glad you managed to build a solution @akhil2698 ,
Unfortunately I did not see you message on 10 September, or I would have responded directly, and indeed a week later I was responding to a similar thread on Multipart encoding
I don’t know if either of these posts in that thread would have resolved your problem, but may also be of interest:
hi @nizamibilal1064 I know its been a few months but I wonder if my “experimental” component can be of assistance, which can build a “multipart message” that can include a file attachment and posted using the POST node.
The component is here
[image]
and there is a demo workflow which posts a json file to the postman echo api here:
[image]
Hey @takbb and @nizamibilal1064 ,
Thank you for sharing your approach — really nice work! Funny enough, we were working on the same problem at the same time.
You can find a shared component and workflow example below:
Multipart Form-Data Builder (Component)
mutlipart-form workflow (Workflow)
The main difference is that we tried to avoid script nodes entirely, and we added the option to explicitly define the object type for the multipart call. I wanted to…