Introduction
The webhook sink delivers Run results to your endpoint via POST request. This is useful for sending results directly to your backend or a third-party service.Usage
Webhook sinks can be used with either the Run API or the Job API. When creating a Run or Job, specify the sink type aswebhook and provide the destination url. You can also optionally provide headers to include in the request. See the Configuration section below for full details.
Configuration
The webhook sink requires a destination URL. This URL must be publicly accessible. You can optionally add headers to include with each request.Properties
The type of sink.Available options:
webhookThe destination URL where Intuned sends Run results.Example:
https://example.com/webhookHeaders to include in the request to your endpoint.
If true, results from failed Runs are not sent.
List of API names to include. If not provided, results from all APIs are sent.Example:
["api1", "api2"]