Hi,
I copied the flow to from default env to one meant for production.
It a manual flow with started by user pressing the button on Sharepoint List. While original flow works fine, i also tested it by turning it back on, and all permissions are the same (it also uses the service account) it stuck on this:
Just stuck here, doing nothing. Its directly after pressing the button. It can be like this for 15 minutes, no error no nothing... Also dev tools doesnt show anything useful.
Is there some special things to do when flow is in nondefault env? I obviously added the ID of environment in json code, did not change anything else.
So the original part:
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "button",
"customRowAction": {
"action": "executeFlow",
"actionParams": "{\"id\": \"hereidoftheflow\"}"
while when changing to flow on non default env i changed it to:
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "button",
"customRowAction": {
"action": "executeFlow",
"actionParams": "{\"id\": \"v1/envID/flowID\"}"
What i do wrong?