Microsoft Exam Questions

What should you use?

HOTSPOTNote: This question is part of a series of questions that present the same scenario. Each question in
the series contains a unique solution that might meet the stated goals. Some question sets might have
more than one correct solution, while others might not have a correct solution.
After you answer a question in this sections, you will NOT be able to return to it. As a result, these
questions will not appear in the review screen.
You are developing an Azure application.
The image below represents the process flow for the application.

What should you use? To answer, select the appropriate options in the answer area.
Each correct selection is worth one point.
Hot Area:

Answer:

Explanation:
A webhook allows you to start a particular runbook in Azure Automation through a single HTTP request.Box 1: HTTP Post
To use a webhook after it has been created, your client application must issue an HTTP POST with the URL for
the webhook.

Box 2: RequestHeaders
Box 3: WebhookData
When a client starts a runbook using a webhook, it cannot override the parameter values defined in the
webhook. To receive data from the client, the runbook can accept a single parameter called $WebhookData of
type [object] that will contain data that the client includes in the POST request.
The $WebhookData object will have the following properties:
WebhookName – The name of the webhook.
RequestHeader – Hash table containing the headers of the incoming POST request.
RequestBody – The body of the incoming POST request. This will retain any formatting such as string,
JSON, XML, or form encoded data. The runbook must be written to work with the data format that is
expected.
https://docs.microsoft.com/en-us/azure/automation/automation-webhooks