> ## 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.

# Delete Scorecard Item

> Deletes a scorecard item. Sibling items are automatically re-ordered so their positions remain contiguous. Requires an org-scoped API key.



## OpenAPI

````yaml delete /scorecards/{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:
  /scorecards/{id}/items/{itemId}:
    delete:
      tags:
        - Scorecard
      summary: Delete Scorecard Item
      description: >-
        Deletes a scorecard item. Sibling items are automatically re-ordered so
        their positions remain contiguous. Requires an org-scoped API key.
      operationId: deleteScorecardItem
      parameters:
        - name: id
          in: path
          description: Parent scorecard UUID
          required: true
          schema:
            type: string
        - name: itemId
          in: path
          description: Scorecard item UUID
          required: true
          schema:
            type: string
      responses:
        '204':
          description: Scorecard item successfully deleted
          content: {}
        '401':
          description: Authentication failed - valid API key required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                id: unauthorized
                status: '401'
                code: '401'
                title: Unauthorized
                detail: Authentication failed - valid API key required
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: >-
            Caller's API key does not have permission to delete items from this
            scorecard
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                id: forbidden
                status: '403'
                code: '403'
                title: Forbidden
                detail: Insufficient permissions to delete this scorecard item
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Scorecard or item not found in the caller's organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                id: not_found
                status: '404'
                code: '404'
                title: Not Found
                detail: Scorecard item not found
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/Error'
        default:
          description: Unexpected error occurred while deleting the scorecard item
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    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
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      name: Authorization
      in: header

````