Hello, we have an app that is connecting to Ivanti to create an Incident. The app is not working when I tried running it locally but is working fine on live. I am using the command zcli apps:server to run the app locally. We are also using secure settings on the app.
"parameters": [
{
"name": "Ivanti Incident Field ID",
"type": "text",
"required": true
},
{
"name": "ivantiIncidentApiDomain",
"type": "text",
"required": true
},
{
"name": "ivantiIncidentApiEndpoint",
"type": "text",
"required": true
},
{
"name": "mulesoftAPIHeaderClientID",
"type": "text",
"required": true,
"secure": true
},
{
"name": "mulesoftAPIHeaderClientSecret",
"type": "text",
"required": true,
"secure": true
},
{
"name": "token",
"text": "secure",
"secure": true
}
]
I tried troubleshooting the error and I found out that it's not going through the
Proxy error: {:code=>"UnprocessableEntity", :status=>"422", :title=>"Unprocessable Entity", :message=>"Failed to get installation and oauth information for app."}
I hope someone can help me.


Secure settings don't get loaded when testing apps from local. It's called out in the ZCLI limitations.
Sorry for the inconvenience!