I want to integreate a service to my Workflow Cloud with a file upload.
I have defined the parameters according to the documentation.
Like this:
"parameters": [
{
"name": "modelId",
"in": "path",
"description": "Format - uuid. Model identifier.",
"required": true,
"type": "string"
},
{
"name": "includeTextDetails",
"in": "query",
"description": "Include text lines and element references in the result. Default: false.",
"type": "boolean"
},
{
"name": "source",
"in": "body",
"required": true,
"schema": {
"type": "string",
"format": "binary"
}
}
],
But my action expects a string, not a file upload. (See attached image)
Is that a bug?
Or what must the input look like?
Or is there something wrong in my definition?
The other file upload types do not seem to be supported by the service, so i want to try this one.
Thanks in advance and best regards
Dave