PL-900 • Practice Test 44
Free PL-900 practice test — 15 questions with explanations. Set 44. No signup required.
The exhibit shows a trigger definition for a Power Automate flow. What does this trigger do?
Refer to the exhibit. {
"triggers": {
"When_a_file_is_created_in_folder": {
"type": "ApiConnection",
"inputs": {
"host": {
"connectionName": "shared_sharepointonline",
"operationId": "WhenFileCreatedInFolder"
},
"parameters": {
"dataset": "https://contoso.sharepoint.com/sites/MySite",
"table": "Shared Documents",
"id": "/sites/MySite/Shared%20Documents/Incoming"
},
"authentication": "@parameters('$authentication')"
},
"conditions": [
{
"expression": "@equals(triggerOutputs()?['headers']?['x-ms-file-name-extension'], '.xlsx')"
}
]
}
}
}