PL-900 Demonstrate the capabilities of Power Automate • Set 6
PL-900 Demonstrate the capabilities of Power Automate Practice Test 6 — 15 questions with explanations. Free, no signup.
Refer to the exhibit. A developer created an approval flow using Power Automate. The flow is triggered manually but the approval email never sends. What is the most likely cause?
Refer to the exhibit.
```json
{
"definition": {
"$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
"actions": {
"Send_approval_email": {
"type": "ApiConnection",
"inputs": {
"host": {
"connectionName": "shared_office365",
"operationId": "SendEmail"
},
"parameters": {
"To": "manager@contoso.com",
"Subject": "Please approve expense report",
"Body": "Approval request for expense report #1234"
},
"authentication": "@parameters('$authentication')"
}
},
"Condition": {
"type": "If",
"expression": "@equals(triggerBody()?['status'], 'Approved')",
"actions": {
"Update_SharePoint": {
"type": "ApiConnection",
"inputs": {
"host": {
"connectionName": "shared_sharepointonline",
"operationId": "UpdateItem"
},
"parameters": {
"dataset": "https://contoso.sharepoint.com/sites/Expense",
"table": "ExpenseReports",
"id": 1234,
"item": {
"Status": "Approved"
}
}
}
}
}
}
},
"triggers": {
"manual": {
"type": "Request",
"kind": "Http",
"inputs": {
"schema": {}
}
}
}
}
}