I have a Premium Azure Service Bus sending messages to a "productupdate" topic. Currently, I am using a Logic App to receive the message, but it's not quite what I would like to do. Instead, I would like for Event Grid to pick up on these messages and fire a Web Hook to an endpoint in my API Management. The problem I am having is configuring the endpoint in API Management to be able to accept the Web Hook (validation code?).
I've read through all of the documentation, blog posts, and forum posts I can find on the subject but nothing has worked thus far. My Web Hook Endpoint I am trying to use is: "https://[apim].azure-api.net/OrdersService/v1/Products?subscription-key=[apim-key].
In the Inbound policies for that endpoint in APIM, I have the following:
<set-variable name="Event" value="@(context.Variables.GetValueOrDefault<JArray>("Request")[0])" />
<choose>
<when condition="@(context.Variables.GetValueOrDefault<JObject>("Event")["eventType"].ToString() == "Microsoft.EventGrid.SubscriptionValidationEvent")">
<return-response>
<set-status code="200" />
<set-header name="Content-Type" exists-action="override">
<value>application/json</value>
</set-header>
<set-body>@{
var validationResponse = new JObject(new JProperty("validationResponse",context.Variables.GetValueOrDefault<JObject>("Event")["data"]["validationCode"].ToString()));
return validationResponse.ToString();
}</set-body>
</return-response>
</when>
<otherwise>
<set-header name="Content-Type" exists-action="override">
<value>application/json</value>
</set-header>
<set-header name="X-Event-Id" exists-action="override">
<value>@(context.Variables.GetValueOrDefault<JObject>("Event")["id"].ToString())</value>
</set-header>
<set-header name="X-Event-Subject" exists-action="override">
<value>@(context.Variables.GetValueOrDefault<JObject>("Event")["subject"].ToString())</value>
</set-header>
<set-header name="X-Event-Type" exists-action="override">
<value>@(context.Variables.GetValueOrDefault<JObject>("Event")["eventType"].ToString())</value>
</set-header>
<set-header name="X-Event-Time" exists-action="override">
<value>@(context.Variables.GetValueOrDefault<JObject>("Event")["eventTime"].ToString())</value>
</set-header>
<set-header name="X-Event-Data-Version" exists-action="override">
<value>@(context.Variables.GetValueOrDefault<JObject>("Event")["dataVersion"].ToString())</value>
</set-header>
<set-header name="X-Event-Metadata-Version" exists-action="override">
<value>@(context.Variables.GetValueOrDefault<JObject>("Event")["metadataVersion"].ToString())</value>
</set-header>
<set-header name="X-Event-Topic" exists-action="override">
<value>@(context.Variables.GetValueOrDefault<JObject>("Event")["topic"].ToString())</value>
</set-header>
<set-body>@(context.Variables.GetValueOrDefault<JObject>("Event")["data"].ToString())</set-body>
</otherwise>
</choose>
No matter what I set the Web Hook Endpoint to or what I put in the Inbound policy, I receive the following error when I click "Create" on the Event Subscription:
Deploying Event Subscription: productupdate
Deployment has failed with the following error: {"code":"Url
validation","message":"The attempt to validate the provided endpoint
https://<apim>.azure-api.net/OrdersService/v1/Products failed. For more details,
visit https://aka.ms/esvalidation."}
I have found plenty of information on the error, but nothing definitive that has applied to (or works with) being received by APIM. I'm pretty sure it has to do with returning the validation code, but I can't figure out how to make APIM do that. What am I missing or doing wrong?