Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Created September 8, 2017 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justinyoo/c613c9450240fedaf7c33fefdb715b87 to your computer and use it in GitHub Desktop.
Save justinyoo/c613c9450240fedaf7c33fefdb715b87 to your computer and use it in GitHub Desktop.
Mixing Parameters in Logic Apps with ARM Template
"triggers": {
"OnFileCreatedOrUpdatedInFolder": {
"type": "ApiConnection",
"recurrence": {
"frequency": "Minute",
"interval": 3
},
"inputs": {
"host": {
"connection": {
"name": "@parameters('$connections')['sharepointonline']['connectionId']"
}
},
"method": "get",
"path": "/datasets/@{encodeURIComponent(encodeURIComponent('https://************.sharepoint.com/sites/o365saturday'))}/triggers/onupdatedfile",
"queries": {
"folderId": "/Shared Documents/demo",
"includeFileContent": true,
"inferContentType": true
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment