PL-900 • Practice Exam 58
Free PL-900 practice exam — 20 questions with explanations. Set 58. No signup required.
Refer to the exhibit. You see a Power Automate flow definition in JSON. What does this flow do?
Refer to the exhibit.
{
"triggers": {
"When_a_new_email_arrives": {
"type": "ApiConnection",
"inputs": {
"host": {
"connectionName": "shared_office365"
},
"operationId": "OnNewEmail",
"parameters": {
"folderPath": "Inbox",
"importance": "Any",
"includeAttachments": true
}
}
}
},
"actions": {
"Create_item": {
"type": "ApiConnection",
"inputs": {
"host": {
"connectionName": "shared_commondataserviceforapps"
},
"operationId": "CreateItem",
"parameters": {
"entityName": "Leads",
"item/email": "@{triggerOutputs()?['body/from']}"
}
}
}
}
}