I'm trying to upload a new file to salesforce. In the documentation they give an example with curl that's using multi-part MIME data: https://developer.salesforce.com/docs/atlas.en-us.uiapi.meta/uiapi/ui_api_features_records_content_document.htm
I tried to ignore it and just make the endpoint call but it seems like it is looking for a fileData parameter like in the curl call because I get this error: [{"errorCode":"POST_BODY_PARSE_ERROR","message":"Binary data expected with name \"fileData\""}]
Is there a way to do multi-part MIME with our API wrk actions? how would I format the headers and body to do it if it is possible?