Custom app file uploading

How can i upload file on custom apps on make.com
i wanted to make an custom app for this api
[Mistral AI API | Mistral AI Large Language Models](https://this api)s

Welcome to the Make community!

According to Filename | Make Apps,

  • Your module’s buffer field can accept a file by combining with a filename parameter.

Example:

[
	{
		"name": "fileName",
		"type": "filename",
		"label": "File name",
		"semantic": "file:name"
	},
	{
		"name": "data",
		"type": "buffer",
		"label": "Data",
		"semantic": "file:data"
	}
]

According to Multipart/form-data | Make Apps,

  • Your module’s communication must also use type multipart/form-data

For more information, see

Hope this helps! Let me know if there are any further questions or issues.

@samliew

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.