Hi,
I created a flow that processes an HTTP request. I currently have it set up as a POST request and have the following schema:
{
"clientId":"0553ad77-f5ce-4ee0-aa81-29c1078f780b",
"intake":{
"test.1":{
"type":"ANSWER",
"qid":"test.1",
"answer":"test"
}
},
"intakeLoopIterationIdsToDelete":[]
}
This is what it shows on the payload:
{
"type": "object",
"properties": {
"clientId": {
"type": "string"
},
"intake": {
"type": "object",
"properties": {
"test.1": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"qid": {
"type": "string"
},
"answer": {
"type": "string"
}
}
}
}
},
"intakeLoopIterationIdsToDelete": {
"type": "array"
}
}
}
I tried POST with Postman and it works. I tried POST from the site I need to send the data from to Postman and it posts correctly. I then try to post from the original site to webhook.site and it also post correctly. I then try POST from the original site and it never receives the reply. I input the URl correctly. I also set the method to POST and still no go. Why would it post in Postman and webhook.site but not in Power Automate?


Report
All responses (
Answers (