Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Hi Amit, It works for images that are hosted on Marketo, so thank you. I was trying to use an externalURL for the image so I was trying to send in the request body:{"externalUrl":'https://dummyimage.com/600x450/000/fff'} I get a success message but the previous image is deleted and the new one is no...
Thank you for the information. Unfortunately the uploads are made through a custom application, so the upload via UI is not an option.
Hi Sanford,I know, but I've managed to upload that file on other APIs and there were no issues, so probably the issue is on writing the streams.So for the moment I gave up on writing those streams and use a formdata object var formData = new FormData(); formData.append("file",...
Hello,I'm trying to upload a file to Marketo via REST API(nodejs app) and I've managed to do it for small size files with npm package "request-promise". const options = { method : 'POST', uri: uri, formData:{ name:filename, folder:folder, file: { value: fs.createReadStream(path, {highWaterMark: 256 ...