API Reference / cto-briefing-config-controller
Replace the CTO briefing configuration
put
https://api.intelig.ai/api/v1/intelig/agents/cto-briefing/config
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: update
A full replace, not a merge: send the whole document. Omitting a cadence resets it to its defaults rather than leaving it as it was. Requires the `agent:write` scope.
Example request
curl -X PUT "https://api.intelig.ai/api/v1/intelig/agents/cto-briefing/config" \
-H "Authorization: ApiKey $INTELIG_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"autoEnroll": "string",
"weekly": "string",
"daily": "string"
}' Request body
application/json
| Field | Type | Required | Description |
|---|---|---|---|
autoEnroll | AutoEnroll | no | — |
weekly | Cadence | no | — |
daily | Cadence | no | — |
Response 200
application/json · ApiResponseCtoBriefingConfig
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | CtoBriefingConfig | — |
Status codes
200— OK400— Bad Request401— —429— —
Every response is wrapped in { success, message, data }. A 4xx means the request
is wrong — do not retry it unchanged. A 429 carries Retry-After in seconds.