Hi all,
I'm using following JSON to format a column in SharePoint list and a create a button from in to trigger a Flow for the selected item:
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json",
"elmType": "button",
"customRowAction": {
"action": "executeFlow",
"actionParams": "{\"id\": \"5849426e-1596-4b40-8f4f-533cc440f7fd\"}"
},
"attributes": {
"class": "ms-fontColor-themePrimary ms-fontColor-themeDarker--hover"
},
"style": {
"border": "none",
"background-color": "white",
"color": "blue",
"cursor": "pointer"
},
"children": [
{
"elmType": "span",
"attributes": {
"iconName": "WordLogo"
},
"style": {
"padding-right": "6px"
}
},
{
"elmType": "span",
"txtContent": "Fill Word"
}
]
}
I wonder if there is a way, using the code above, to run a Flow which is in non default environment?
Probably by using another parameter after "actionParams"?
Thanks,
Jan