
Announcements
Hi All,
Recently I came with a new request in my custom connector to take multiple files as input to check functionality of POST method. Before this I was able to upload one file as input but now, I have to make necessary changes. According to swagger documentation Connector still doesn't support Open API 3.0 and it doesn't allow to take array of file.
I will use my connector in flow in next step to take array of file.
If anyone have solution of given problem and need more information on issue, please drop me a comment here.
I will be happy to learn and try better way to resolve issue.
Hi @Syndicate_AdminAdmin, Thanks for your reply.
But we don't want to zip the files and upload. I am providing more info. on this so you can understand better.
Following changes made in swagger to upload multiple files in custom connector: -
- name: files
in: formData
required: true
type: array
items:
type: string
format: binary
description: The actual documents that must be archived.
and below is flow where I want to upload multiple files but getting below error in flow: -
"message": "Validation Failed",
"details": {
"": [
"Failed to read the request form. Form section has invalid Content-Disposition value: "
],