Exhibit
Refer to the exhibit.
{
"definition": {
"triggers": {
"manual": {
"type": "Request",
"kind": "Http",
"inputs": {
"schema": {
"type": "object",
"properties": {
"employeeId": {
"type": "string"
},
"amount": {
"type": "number"
}
},
"required": ["employeeId","amount"]
}
}
}
},
"actions": {
"Condition": {
"type": "If",
"expression": "@greater(triggerBody()?['amount'], 5000)",
"actions": {
"Send_approval": {
"type": "OpenApiConnection",
"inputs": {
"host": {
"connectionName": "shared_approvals",
"operationId": "StartAndWaitForAnApproval"
},
"parameters": {
"approvalType": "FirstToRespond",
"assignedTo": "manager@contoso.com",
"details": "Expense over $5000"
}
}
}
},
"else": {
"actions": {
"Send_email": {
"type": "OpenApiConnection",
"inputs": {
"host": {
"connectionName": "shared_office365",
"operationId": "SendEmail"
},
"parameters": {
"To": "employee@contoso.com",
"Subject": "Expense Approved",
"Body": "Your expense is approved."
}
}
}
}
}
}
}
}
}- A
The flow will send an approval email to the employee.
Why wrong: The approval goes to manager, not employee.
- B
The flow will start an approval assigned to manager@contoso.com.
Condition is true, so approval action runs.
- C
The flow will fail because employeeId is missing.
Why wrong: The trigger requires employeeId; but if provided, flow runs.
- D
The flow will send an email to manager@contoso.com.
Why wrong: The action is an approval, not a simple email.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.