Hello there,
I am building an app with a Pen Input for signatures. I will eventually save the data from Powerapps to OD4B as a .htm file then, convert it to a PDF.
I am trying to pass the Pen Input image to Flow using a Custom Connector an a Swagger file as described in this video by @Anonymous:
https://www.youtube.com/watch?v=mp-8B1fLrqs&feature=youtu.be
I have double checked my host and base path.
I also updated my host path omitting the :443 as he indicated in this article:
Here is my swagger file for reference:
{
"swagger": "2.0",
"info": {
"description": "Convert the signature of a waiver",
"version": "1.0.0",
"title": "WaiverHandler"
},
"host": "prod-26.westus.logic.azure.com",
"basePath": "/workflows",
"schemes": [
"https"
],
"consumes": [],
"produces": [],
"paths": {
"/098f3ca44d7d40c493.../triggers/manual/paths/invoke": {
"post": {
"summary": "Convert Waiver Signature",
"description": "Convert Waiver Signature",
"operationId": "ConvertSig",
"consumes": [
"multipart/form-data"
],
"parameters": [
{
"name": "api-version",
"in": "query",
"default": "2016-06-01",
"required": true,
"x-ms-visibility": "internal",
"type": "string"
},
{
"name": "sp",
"in": "query",
"default": "/triggers/manual/run",
"required": true,
"x-ms-visibility": "internal",
"type": "string"
},
{
"name": "sv",
"in": "query",
"default": "1.0",
"required": true,
"x-ms-visibility": "internal",
"type": "string"
},
{
"name": "sig",
"in": "query",
"default": "AcjWxasejZ...",
"required": true,
"x-ms-visibility": "internal",
"type": "string"
},
{
"name": "file",
"in": "formData",
"description": "Signature File",
"required": true,
"type": "file"
},
{
"name": "filename",
"in": "query",
"description": "Name of signature file",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "successful operation"
}
}
}
}
},
"definitions": {},
"parameters": {},
"responses": {},
"securityDefinitions": {},
"security": [],
"tags": []
}No matter what I do I cannot get the PenInput.Image to Flow. I have tried to recreate the flow, recreate the swagger file and have recreated the custom connector a dozen times. No dice. Can anyone help me with this?

Report
All responses (
Answers (