SC-200 • Mock Exam 87
Free SC-200 mock exam — 25 questions with explanations. Set 87. No signup required.
Refer to the exhibit. You have a Logic Apps playbook that triggers on Microsoft Sentinel alerts. The playbook is not posting messages to Teams. What is the most likely cause?
Refer to the exhibit.
```json
{
"id": "playbook-logic-app",
"triggers": {
"When_a_response_to_a_Microsoft_Sentinel_alert_is_triggered": {
"kind": "Microsoft.EventGrid",
"inputs": {
"body": {
"alert": {
"properties": {
"providerAlertId": "@triggerBody()?['data']?['essentials']?['alertId']",
"correlationKey": "@triggerBody()?['data']?['essentials']?['correlationKey']"
}
}
}
}
}
},
"actions": {
"Compose_Teams_message": {
"kind": "Microsoft.Teams.PostMessage",
"inputs": {
"message": "Alert ID: @{triggerBody()?['data']?['essentials']?['alertId']}",
"recipient": "security-team-channel"
}
}
}
}
```