Can I submit mixed data using form? For example multiple files and text field data?

Can I submit mixed data using form? For example multiple files and text field data?

html parameter content:

<form action=" http://<servername>:<portnumber>/sdpapi/request/<Request ID>/attachments "
method="post" enctype="multipart/form-data">
<input type="hidden" name="OPERATION_NAME" value="UPLOAD" />
<input type="hidden" name="TECHNICIAN_KEY" value="<Technician Key>" />
<input type="hidden" name="format" value="json" />
<input type="file" name="attachment" />
<input type="submit" name="submit" value="upload" />
</form>

Uploading: image.png(1)…

How to implement it in n8n?

Hey @Hao_Tan, this is not supported by the HTTP Request node unfortunately. You would need to run custom code in the Function node to make a multipart/form-data request as described here: