> ## Documentation Index
> Fetch the complete documentation index at: https://docs.attention.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Field Configuration Item

> Returns a single field-configuration item by UUID. Items belonging to a field configuration in another organization return 404.



## OpenAPI

````yaml get /field-configurations/{id}/items/{itemId}
openapi: 3.0.1
info:
  title: Attention Service V2
  description: Attention Service API V2
  termsOfService: https://www.attention.com/terms-of-use
  contact:
    name: Attention Team
    url: https://docs.attention.com/welcome
    email: support@attention.com
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
  version: 1.8.0
servers:
  - url: https://api.attention.tech/v2
security:
  - APIKeyHeader: []
paths:
  /field-configurations/{id}/items/{itemId}:
    get:
      tags:
        - Field Configuration
      summary: Get Field Configuration Item
      description: >-
        Returns a single field-configuration item by UUID. Items belonging to a
        field configuration in another organization return 404.
      operationId: getFieldConfigurationItem
      parameters:
        - name: id
          in: path
          description: UUID of the field configuration.
          required: true
          schema:
            type: string
        - name: itemId
          in: path
          description: UUID of the field-configuration item.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Item successfully retrieved.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FieldConfigurationItemResponse'
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/FieldConfigurationItemResponse'
        '401':
          description: Authentication failed. Please provide a valid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: >-
            No item with the provided UUID exists in the specified field
            configuration.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/Error'
        default:
          description: Unexpected error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    FieldConfigurationItemResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/FieldConfigurationItem'
      description: Envelope containing a single field-configuration item.
      example:
        data:
          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
    Error:
      type: object
      properties:
        id:
          type: string
          description: A unique identifier for the error.
        status:
          type: string
          description: >-
            The HTTP status code applicable to this problem, expressed as a
            string value.
        code:
          type: string
          description: An application-specific error code, expressed as a string value.
        title:
          type: string
          description: A short, human-readable summary of the problem.
        detail:
          type: string
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
        source:
          type: object
          properties:
            pointer:
              type: string
            parameter:
              type: string
        meta:
          type: object
          properties: {}
      example:
        id: not_found_error
        status: '404'
        code: '404'
        title: Not Found Error
        detail: The requested resource was not found
        source:
          pointer: /data/attributes/id
    FieldConfigurationItem:
      required:
        - allowLongResponse
        - availableToAllClients
        - category
        - contentType
        - contents
        - createdAt
        - extractQuotes
        - fieldConfigurationUUID
        - lastModifiedAt
        - promptType
        - title
        - uuid
      type: object
      properties:
        uuid:
          type: string
          description: Unique identifier of the item.
          example: b9e1c0a0-5a3d-4a9c-9b1e-2d6f4b7a1c11__item-01
        fieldConfigurationUUID:
          type: string
          description: UUID of the parent field configuration.
          example: b9e1c0a0-5a3d-4a9c-9b1e-2d6f4b7a1c11
        title:
          type: string
          description: Short human-readable title of the item. Trimmed; 1-128 characters.
          example: Budget Range
        category:
          type: string
          description: Category of the item. One of the intelligence-category enum values.
          example: CRM
          enum:
            - CRM
            - Indicators
            - BuiltInInsight
            - CustomInsight
        contents:
          type: string
          description: Prompt text that Attention will evaluate against each conversation.
          example: What is the customer's stated budget range?
        description:
          type: string
          description: Optional longer description shown to end users. 0-2000 characters.
          example: Used by the RevOps team to forecast deal size.
        promptType:
          type: string
          description: Prompt family used to analyze the conversation.
          example: freeform
        contentType:
          type: string
          description: Expected shape of the extracted content.
          example: text
        responseType:
          type: string
          description: Optional response data type hint.
          example: number
        options:
          type: array
          description: >-
            Optional allowed response values when the item is a multiple-choice
            field.
          example:
            - small
            - medium
            - large
          items:
            type: string
        dependsOn:
          type: array
          description: UUIDs of other items this item depends on.
          items:
            type: string
        maxValues:
          type: integer
          description: Maximum number of values allowed for multi-select items.
          example: 1
        allowLongResponse:
          type: boolean
          description: Whether the analyzer may produce a longer free-text response.
          example: false
        extractQuotes:
          type: boolean
          description: >-
            Whether the analyzer should attach supporting quotes to the
            response.
          example: true
        availableToAllClients:
          type: boolean
          description: Internal flag marking the item as globally available.
          example: false
        analysisLevel:
          type: string
          description: Level at which the item is evaluated.
          example: conversation
          enum:
            - conversation
            - deal
            - lead
            - contact
            - account
        metadata:
          $ref: '#/components/schemas/FieldConfigurationItemMetadata'
        createdAt:
          type: string
          description: Timestamp when the item was created.
          format: date-time
          example: '2026-03-01T12:00:00Z'
        lastModifiedAt:
          type: string
          description: Timestamp when the item was last updated.
          format: date-time
          example: '2026-03-02T08:30:00Z'
      description: >-
        A single field within a Field Configuration (internally
        `IntelligenceItem`). Items describe a prompt that Attention evaluates
        against a conversation and produces a value for. A field-configuration
        item is cloned as one `IntelligenceItemAssignment` per team the parent
        configuration is assigned to - see `IntelligenceItemAssignment`.
      example:
        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
        analysisLevel: conversation
        createdAt: '2026-03-01T12:00:00Z'
        lastModifiedAt: '2026-03-02T08:30:00Z'
    FieldConfigurationItemMetadata:
      type: object
      properties:
        min_score:
          type: number
          description: Minimum allowed score value.
          format: double
          example: 0
        max_score:
          type: number
          description: Maximum allowed score value.
          format: double
          example: 10
        middle_score:
          type: number
          description: Optional midpoint score value, used by scoring heuristics.
          format: double
          nullable: true
          example: 5
        min_criteria:
          type: string
          description: Human-readable description of what the minimum score means.
          example: No fit
        max_criteria:
          type: string
          description: Human-readable description of what the maximum score means.
          example: Perfect fit
        middle_criteria:
          type: string
          description: Human-readable description of what the middle score means.
          nullable: true
          example: Partial fit
      description: >-
        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`.
      example:
        min_score: 0
        max_score: 10
        min_criteria: No fit
        max_criteria: Perfect fit
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      name: Authorization
      in: header

````