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

# Delete a graded assignment by ID



## OpenAPI

````yaml /openapi-components.json delete /api/v1/assignment-grader/delete/{id}
openapi: 3.0.0
info:
  title: StudyFetch API
  description: API documentation for StudyFetch
  version: '1.0'
  contact: {}
servers:
  - url: https://studyfetchapi.com
    description: Production API Server
security: []
tags: []
paths:
  /api/v1/assignment-grader/delete/{id}:
    delete:
      tags:
        - Assignment Grader
      summary: Delete a graded assignment by ID
      operationId: deleteAssignmentGrader
      parameters:
        - name: id
          required: true
          in: path
          description: Assignment grader document ID
          schema:
            type: string
      responses:
        '200':
          description: Assignment grader deleted successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  message:
                    type: string
                    example: Assignment deleted successfully
        '401':
          description: Missing or invalid authentication
        '404':
          description: Assignment not found in your organization
      security:
        - x-api-key: []
        - bearerAuth: []
components:
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API Key for server-to-server authentication. Resolves to the owning
        organization.
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        JWT bearer token for user session authentication. Resolves to both
        organization and user.

````