Přeskočit na hlavní obsah

HTTP Webhooks

The most common distribution type uses HTTP protocol to distribute the data.
For each telemetry message a new HTTP request is created and sent to your service's HTTP server.

Specific configuration

Currently, only additional HTTP headers can be set using the specific configuration.

NameDescriptionValid values
target_additional_http_headersAdditional HTTP headers sent with each requestJSON object

Example specific configuration

Following is an example of configuration JSON where custom headers are used to send Bearer token with each request.

{
"target_additional_http_headers": {
"X-My-Custom-Id": "12345"
}
}