Skip to main content
The REST endpoint destination POSTs data to an HTTP endpoint. It supports synchronous and asynchronous modes, bearer token authentication, and configurable timeouts.

Request

The pipeline sends an HTTP POST request with the following JSON payload:

Expected Response

The endpoint must return a JSON response with the following structure:
The response data is forwarded to downstream steps in the pipeline.

Sync and Async Modes

Set async to control whether the pipeline waits for a response:

Authentication

Set bearerToken to include an Authorization: Bearer {token} header on every request. If omitted, requests are sent without authentication.

Timeout

The timeoutMs field controls the maximum time in milliseconds the pipeline will wait for a response when async is false. The default is 300000 ms (5 minutes).

Configuration Example

Field Reference

Completion Notification

A pipeline notification is published to ActiveMQ on completion. See Notifications for details.