Documentation Index
Fetch the complete documentation index at: https://docs.junction.com/llms.txt
Use this file to discover all available pages before exploring further.
ETL Pipelines integration is available for the Scale plan.
Event Structure
Each event is published with these RabbitMQ message custom headers:| Key | Value |
|---|---|
| Routing Key | Junction event type, e.g., daily.data.activity.created |
Content-Type | application/json: UTF-8 JSON document |
Content-Encoding | gzip: The blob is compressed by gzip. null/absent: The blob is uncompressed. |
| Data | Encoded JSON blob. This may or may not be compressed — see Content-Encoding. |
Payloads smaller than 1KiB would not be compressed. You must check
Content-Encoding to identify if
decompression of the message payload blob is necessary.At this time, Junction publishes exclusively JSON blobs (
Content-Type == application/json).Having said that, you are strongly encouraged to check for and drop any events with unrecognized Content-Type and Content-Encoding.Broker authentication
Junction only supports password authentication at this time. Junction publishes events with the following settings:- Publisher Confirm mode is required
- Events are published with the Mandatory flag but without the Immediate flag.
- Events are published with Event Type as the Routing Key.
Configuration
Org Management API is available for the Scale plan.