How to send null in multipart request?

Hello, can someone help me to insert null in to a multipart-form field?

Can you give a bit of context on what you are trying to do?

HTTP does not care for data types, it is all a big text message.

I’m trying to send data with null values in some form fields. Because it’s text, “null” doesn’t work. “” - also don’t work.

You could just not send the value in your request at all. Don’t include it in your form.

2 Likes

Setting field type to file and not selecting any, gave me null value! Thanks! :slight_smile:

1 Like