Forum Discussion
Daniel Westerdale
Oct 28, 2020Iron Contributor
Logic App Update File Properties throws an exception after a SPO file successful checkout
Firstly, the Update File Properties in the action sequence has been working pefectly until we introduced mandatory checkouts in the sharePont document library. Delay (10s) and Get file prop...
- Nov 01, 2020
Hmmmmmmm, the answer is obvious ( just not to me
).Both Update Item and Check out actions need to reference the same connection in order facilite and orderly deployment between enviroments ( and not to appear as two different users) . You can make the required changes in UI or in the code view ( see below(.
"type": "ApiConnection", "inputs": { "host": { "connection": { "name": "@parameters('$connections')['sharepointonline']['connectionId']" } },
Daniel Westerdale
Nov 01, 2020Iron Contributor
Hmmmmmmm, the answer is obvious ( just not to me
).
Both Update Item and Check out actions need to reference the same connection in order facilite and orderly deployment between enviroments ( and not to appear as two different users) . You can make the required changes in UI or in the code view ( see below(.
"type": "ApiConnection",
"inputs": {
"host": {
"connection": {
"name": "@parameters('$connections')['sharepointonline']['connectionId']"
}
},