Create webchat configuration
Create a new webchat widget configuration. allowedDomains restricts the embed origins; promptId selects which Prompt the agent uses for AI responses on inbound visitor messages.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
Display name for the webchat configuration in the admin UI.
Hex color for the widget chat panel background.
Hex color for the widget primary accent (header/buttons).
Hex color for the widget secondary accent (outbound bubbles).
AI prompt _id driving the agent for this widget.
Hostnames permitted to embed this widget. Empty array disables host check.
Pipeline stage new webchat contacts enter.
Free-form notes describing this widget configuration.
Greeting bubble shown to the visitor before they send a message.
Storage key or signed URL for the widget icon.
Hex color for text inside the widget header.
Status line shown under the title (e.g. We typically reply in minutes).
Hex color for the status text.
Hex color for message timestamps.
Hex color for the CSAT survey panel background.
Hex color for CSAT survey text.
Message shown after the visitor submits a CSAT response.
Pipeline _id new webchat contacts are placed into.
Pipeline stage new webchat contacts are placed into.
When true, the AI replies autonomously without rep approval.
When true, the widget is active and accepts new sessions.
Response
Webchat configuration created
Response from POST /api/webchats and PUT /api/webchats/{id}.
Stored webchat configuration document. The icon field, when present, is a freshly-signed URL pointing at the R2-hosted asset (the database stores the storage key).
{
"_id": "67d3a0b0c0d0e0f0a0b0c0d0",
"organizationId": "65a0e0e0e0e0e0e0e0e0e0e0",
"userId": "65b1f0a2c3d4e5f6a7b8c9d0",
"createdBy": "65b1f0a2c3d4e5f6a7b8c9d0",
"name": "Marketing site widget",
"description": "Bottom-right widget on the marketing site",
"starterMessage": "Hi! Looking for pricing?",
"backgroundColor": "#FFFFFF",
"primaryColor": "#1F2937",
"secondaryColor": "#3B82F6",
"icon": "https://r2.example.com/orgs/65a0.../webchat/icon.png?token=...",
"promptId": "65b2a1c3d4e5f6a7b8c9d0e1",
"allowedDomains": ["https://example.com"],
"pipelineId": "66f0a0b0c0d0e0f0a0b0c0d0",
"initialStage": "new",
"isAutopilot": true,
"isEnabled": true,
"position": "bottom-right",
"offsetX": 24,
"offsetY": 24,
"zIndex": 9999,
"createdAt": "2026-03-12T10:00:00.000Z",
"updatedAt": "2026-05-18T14:00:00.000Z"
}