Create a stream trigger
Creates a new stream trigger for data processing and routing. A stream trigger connects a data source to a target, enabling real-time data flow between components.
Usage Notes:
- The system automatically creates necessary import/export pairs
- Stream triggers define both source and target configurations
- The source configuration specifies where data originates
- The target configuration specifies where data should be delivered
- Response types can be Singleton (single response), Stream (continuous), or Chunked (paginated)
- Source and target types determine how data flows through the system
- The trigger is active immediately after creation
- Both synchronous and asynchronous data processing patterns are supported
Authorizations
JWT token for authentication. Required for all API operations to verify identity and access permissions.
Body
Unique name identifier for the trigger. Used to construct the trigger's topic and subject.
"my-stream-trigger"
Must be 'stream' for this endpoint. Determines the trigger's behavior and available properties.
stream "stream"
Logical grouping the trigger belongs to. Used for organizing and filtering triggers.
"my-collection"
Human-readable description explaining the trigger's purpose and function.
"Stream data processing trigger"