Creates a new field configuration owned by the authenticated organization. The owning organization is inferred from the API key and any organization UUID supplied on the body is ignored.
Field configuration to create.
Request payload for creating a new field configuration. The owning organization is inferred from the API key - any organization UUID included in the body is ignored.
Human-readable name of the configuration. Trimmed; 1-128 characters.
"Enterprise Discovery Questions"
UUIDs of the teams to assign this configuration to. Ignored when allTeams is true.
["fe515723-fe2e-4959-a5fa-c4d3937fe7e4"]When true, the configuration applies to every team in the organization.
false
Criteria expression that controls when this field configuration applies. Conditions are combined using the specified boolean operator.
{
"conditions": [
{
"field": "account.industry",
"value": "technology"
}
],
"operator": "AND"
}Field configuration created successfully.
Envelope containing a single field configuration.
A Field Configuration (internally IntelligenceItemCollection) groups a set of intelligence items that are surfaced together for the teams it is assigned to. Field Configurations are scoped to a single organization.
{
"uuid": "b9e1c0a0-5a3d-4a9c-9b1e-2d6f4b7a1c11",
"name": "Enterprise Discovery Questions",
"organizationUUID": "16b78cec-82ef-46d2-8213-5d3bb7d2571c",
"teamsUUID": ["fe515723-fe2e-4959-a5fa-c4d3937fe7e4"],
"allTeams": false,
"isDefaultTemplate": false,
"criteria": {
"conditions": [
{
"field": "account.industry",
"value": "technology"
}
],
"operator": "AND"
},
"createdAt": "2026-03-01T12:00:00Z"
}