---
title: "Get Field Configuration"
method: GET
path: "/field-configurations/{id}"
tags: ["Field Configuration"]
---

# Get Field Configuration

`GET /field-configurations/{id}`

Returns a single field configuration by UUID. Field configurations belonging to other organizations return 404 - the API never leaks cross-organization existence.

## Path parameters

- `id` string, required

## Response `200`

Field configuration successfully retrieved.

- FieldConfigurationResponse — Envelope containing a single field configuration.
  - `data` FieldConfiguration — 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` string, required — Unique identifier of the field configuration.
    - `name` string, required — Human-readable name of the field configuration.
    - `organizationUUID` string, required — UUID of the organization the field configuration belongs to.
    - `teamsUUID` string[], required — UUIDs of the teams this field configuration is assigned to. Ignored when `allTeams` is true.
    - `allTeams` boolean, required — When true, this configuration applies to every team in the organization and `teamsUUID` is ignored.
    - `isDefaultTemplate` boolean, required — Whether this configuration is the organization's default template.
    - `criteria` FieldConfigurationCriteria — Criteria expression that controls when this field configuration applies. Conditions are combined using the specified boolean operator.
      - `conditions` FieldConfigurationCriteriaCondition[] — Ordered list of conditions to evaluate.
        - `field` string — Name of the field the condition applies to.
        - `value` string — Value the field must match for this condition.
      - `operator` 'AND' | 'OR' — Boolean operator used to combine the conditions.
    - `createdAt` string, date-time, required — Timestamp when the configuration was created.

## Other responses

- `401` — Authentication failed. Please provide a valid API key.
- `404` — No field configuration with the provided UUID exists in the organization.
- `default` — Unexpected error.

---

[API](https://skmtc.net/attention/apis/attention-service-v2.md) · [All operations](https://skmtc.net/attention/apis/attention-service-v2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/attention/attention-service-v2/revisions/5de55d3804cf/schema)
