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).
UUID of the field configuration.
Item to create inside the field configuration.
Request payload for creating a single new item inside a field configuration. The REST endpoint wraps this singular request into 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 returns the list of created assignments.
Short human-readable title of the item. Trimmed; 1-128 characters.
"Budget Range"
Category of the item.
CRM, Indicators, BuiltInInsight, CustomInsight "CRM"
Prompt text that Attention will evaluate against each conversation.
"What is the customer's stated budget range?"
Prompt family used to analyze the conversation.
"freeform"
Expected shape of the extracted content.
"text"
Optional longer description. 0-2000 characters.
"Used by the RevOps team to forecast deal size."
Optional response data type hint.
"number"
Optional allowed response values for multiple-choice items.
["small", "medium", "large"]
UUIDs of other items this item depends on.
Maximum number of values allowed for multi-select items.
1
Whether the analyzer may produce a longer free-text response.
false
Whether the analyzer should attach supporting quotes to the response.
true
Level at which the item is evaluated.
conversation, deal, lead, contact, account "conversation"
Numeric scoring metadata for a field-configuration item. Required when the item represents a numeric score - min_score must be less than or equal to max_score.
{
"min_score": 0,
"max_score": 10,
"min_criteria": "No fit",
"max_criteria": "Perfect fit"
}
Optional starting position in the team's ordered item list; existing assignments at or after this position are shifted by one.
0
Optional analysis stage in which the resulting assignments are evaluated.
0
Item created successfully. The response body contains the new item and the fan-out assignment rows.
Envelope returned when a field-configuration item is created. The data.assignments array documents the fan-out (one entry per team the parent configuration is assigned to).
Create-item payload: the newly created item plus the fan-out IntelligenceItemAssignment rows - one per team the parent field configuration is assigned to.
{
"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
}
]
}