uploading an image through Marketo API into Design Studio: 611 System Error
I am trying to get the teams to upload the image via a Microsoft Form, and through a PowerAutomate flow, I am trying to do an HTTP request to upload that file into Marketo.
I managed to get the file content as base64 string.
And here is my API request.

Here's the body of the API request.
--------WebKitFormBoundary2VyWOacQSupl4gUL
Content-Disposition: form-data; name="name"
Golden Age Banner_Dhananjaya Walallawi.jpg
--------WebKitFormBoundary2VyWOacQSupl4gUL
Content-Disposition: form-data; name="folder"
{ "id":804, "type":"Folder" }
--------WebKitFormBoundary2VyWOacQSupl4gUL
Content-Disposition: form-data; name="description"
This is a test file
--------WebKitFormBoundary2VyWOacQSupl4gUL--
Content-Disposition: form-data; name="file"; filename="Golden Age Banner_Dhananjaya Walallawi.jpg"
Content-Type: image/jpeg
@{outputs('Compose')}
--------WebKitFormBoundary2VyWOacQSupl4gUL--
I keep getting the 611 system error.
Any idea what I've got wrong here? It's my first time trying to use this API call.