POST
/api/v1/config/channels
Register a new channel for a Document_Type. Channels provide per-producer ingestion endpoints.
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| channelId | string | Yes | Unique channel identifier |
| documentType | string | Yes | Document_Type this channel belongs to |
| channelSchema | string | No | Optional schema reference for channel-specific validation |
Response
201 Created
400 Bad Request
404 Document_Type not found
{
"channelId": "garage-sensor",
"documentType": "temperature-readings",
"status": "active"
}