Hi Guys,
I am relatively very very novice in understanding http requests and apis. One of my clients wanted to generate an http request endpoint with flow.
I tried it and it worked. On a GET request, I was able to pass two parameters which I then used in the next steps for testing.
Then I got to real work, deleted the old flow and started a new one but now the parameters won't appear in the output of HTTP Request Trigger. I am trying the pass the parameters via URL directly as:
https://prod-119.westeurope.logic.azure.com/workflows/5ab0f8daef0148cf9023486de1f42264/triggers/manual/paths/invoke?name=abcd&api-version=2016-06-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Tj2ETlL9QToZFCJGWE490ALkwZq_5vcndEHv3OtxU0Q
I tried relative path, it works. But what is the mistake I am doing in passing the parameters.
My schema is:
{
"type": "object",
"properties": {
"name": {
"type": "string"
}
}
}