So, I have to send a file (or files) together with other json data.
From what I've searched, I can only send files alone or convert them to base64 and then send the json with the base64 code to the API (not confirmed).
Is there another way to send files that is not converting them to base64?
We already had a problem with base64 and images where our GET was taking a lifetime to load because of the length of the base64 strings.
EDIT: So, I just tried to send it as base64 and it worked, so, it works, I just want to avoid send it that way.