Hey everyone
I got this strange issue. I have setup a process in which I call an API with POST to create a new user account. This worked for 2-3 months perfectly. But now, since last week I always receive the body: "The requested URL was rejected. Please consult with your administrator." And the server does not even log these events. The GET calls do work though, which surprises me.
I've tested the same with postman.co and there it worked flawlessly. Thus I presume there is some issue with Microsoft Flow. But I cannot find out what it is. Has anyone an idea?
{
"inputs": {
"method": "POST",
"uri": "https://censored/admin/users/",
"headers": {
"Content-Type": "application/json; charset=utf-8",
"Accept": "application/json"
},
"body": {
"user": {
"group": "censored",
"email": "censored",
"name": "censored",
"send_password_request": true
}
},
"authentication": {
"type": "Basic",
"username": "censored",
"password": "censored"
}
}
}
And this worked before last week. So I really don't know what happened...
Any help is appreciated. Cheers