Field Configuration
Create Field Configuration Item
Creates a single new item inside a field configuration. The REST endpoint wraps the singular request around the underlying bulk creation path (ADR-9). Creating an item fans out into one IntelligenceItemAssignment per team the parent configuration is assigned to - the response body includes both the new item and the list of created assignments under data.assignments (explicit fan-out).
post/field-configurations/{id}/items
Path parameters
idstring required
UUID of the field configuration.
Request body
Example request
{
"title": "Budget Range",
"category": "CRM",
"contents": "What is the customer's stated budget range?",
"promptType": "freeform",
"contentType": "text",
"analysisLevel": "conversation"
}Response
Item created successfully. The response body contains the new item and the fan-out assignment rows.
Example response
{
"data": {
"item": {
"uuid": "b9e1c0a0-5a3d-4a9c-9b1e-2d6f4b7a1c11__item-01",
"fieldConfigurationUUID": "b9e1c0a0-5a3d-4a9c-9b1e-2d6f4b7a1c11",
"title": "Budget Range",
"category": "CRM",
"contents": "What is the customer's stated budget range?",
"promptType": "freeform",
"contentType": "text"
},
"assignments": [
{
"uuid": "b9e1c0a0-5a3d-4a9c-9b1e-2d6f4b7a1c11__item-01-a1b2c3",
"intelligenceItemUUID": "b9e1c0a0-5a3d-4a9c-9b1e-2d6f4b7a1c11__item-01",
"teamUUID": "fe515723-fe2e-4959-a5fa-c4d3937fe7e4",
"category": "CRM",
"displayOrder": 0
}
]
}
}