Tried to load a file with azure logic app custom trigger from that example:
https://learn.microsoft.com/en-us/azure/logic-apps/logic-apps-workflow-actions-triggers#request-trigger
{
"manual": {
"type": "Request",
"kind": "Http",
"inputs": {
"method": "POST",
"schema": {
"type": "object",
"properties": {
"customerName": {
"type": "String"
},
"customerAddress": {
"type": "Object",
"properties": {
"streetAddress": {
"type": "string"
},
"city": {
"type": "string"
}
}
}
}
}
}
}
}
Just seems it is not working.
Can someone please provide a valid file with custom connector?
Or post an example of a custom trigger to use in custom connector
Error:
{"Code":"","Message":"PUT https://logic-apim-westeurope.management.azure-api.net/apis/a48d593c83434d29b4d8cb94083ab2df?import=true&protocols=https&protocols=http&path=apim/a48d593c83434d29b4d8cb94083ab2df&api-version=2014-02-14 failed with BadRequest, content={\"error\":{\"code\":\"ValidationError\",\"message\":\"One or more fields contain incorrect values:\",\"details\":[{\"code\":\"ValidationError\",\"target\":\"representation\",\"message\":\"Parsing error(s): Property 'manual' has not been defined and the schema does not allow additional properties. Path 'manual', line 22, position 11.\"},{\"code\":\"ValidationError\",\"target\":\"representation\",\"message\":\"Parsing error(s): The input OpenAPI file is not valid for the OpenAPI specificate https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md (schema https://github.com/OAI/OpenAPI-Specification/blob/master/schemas/v2.0/schema.json).\"}]}}","Target":null,"Details":[],"Innererror":null}
