Hello Community 
- I’m building a custom app in Make.com and need some help.
I want to take the audio output from an ElevenLabs module (which runs before this step) so that I can send the same audio file via an API call to Acast. (Acast Open API)
Like this:
I have made it work in postman (incl. file upload), but something is wrong in make.com 
My code:
{
// Pre-processing step: Convert the buffer to a file.
“preprocessing”: {
“convertBufferToFile”: {
“input”: “{{parameters.audio}}”,
“output”: “convertedAudioFile.mp3”
}
},
// Upload step: Use the converted file.
“upload”: {
“url”: “/long key ;-)/episodes”,
“method”: “POST”,
“formData”: {
“title”: “{{parameters.title}}”,
“audio”: “{{convertedAudioFile.mp3}}”,
“status”: “draft”,
“summary”: “{{parameters. Summary}}”
}
}
}
Could you please guide me on how to achieve this?
Thanks in advance for your help!
Best regards,
Henrik
You need to have two fields with types filename
and buffer
.
[
{
"name": "name",
"type": "filename",
"label": "Name",
"semantic": "file:name"
},
{
"name": "data",
"type": "buffer",
"label": "Data",
"semantic": "file:data"
}
]
For more information, see Buffer | Make Developer Hub
Hope this helps! Let me know if there are any further questions or issues.
— @samliew
P.S.: Investing some effort into the Make Academy will save you lots of time and frustration using Make.
1 Like
Thanks for returning to this topic and marking this thread as resolved. Please begin a new topic if you require further assistance. You can also try perusing the AI RAG chatbot that I trained with 10,000+ of my Make forum posts, for targeted context awareness of the Make platform.
1. If anyone has a new question in the future, please start a new thread. This makes it easier for others with the same problem to search for the answers to specific questions, and you are more likely to receive help since newer questions are monitored closely.
2. The Make Community guidelines encourages users to try to mark helpful replies as solutions to help keep the Community organized.
This marks the topic as solved, so that:
- others can save time when catching up with the latest activity here, and
- allows others to quickly jump to the solution if they come across the same problem
To do this, simply click the checkbox at the bottom of the post that answers your question:

3. Don’t forget to like and bookmark this topic so you can get back to it easily in future!
Here are some useful links and guides you can use to learn more on how to use the Make platform, apps, and app modules. I found these useful when I was learning Make, and hope they might benefit you too —
Getting Started
Help Centre Basics
Articles & Videos
Hope this helps! Let me know if there are any further questions or issues.
— @samliew
P.S.: Investing some effort into the Make Academy will save you lots of time and frustration using Make.