Azure Event Grid can be used to push messages to Azure Functions, HTTP endpoints (webhooks), and several other Azure tools. Event Grid can only be used with the CloudEventsFormat. To set up a Subscription with Azure Event Grid, first create a topic in the Azure Portal. To allow Composable Commerce to push messages to your topic, provide an access key.

interface AzureEventGridDestination {
    accessKey: string;
    type: "EventGrid";
    uri: string;
}

Properties

Properties

accessKey: string

Partially hidden on retrieval for security reasons.

type: "EventGrid"
uri: string

URI of the topic.

Generated using TypeDoc