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

# Delete skill

> Delete a skill. For company-owned built-in overrides this marks the override as removed (hidden from the library) rather than hard-deleting it, so the canonical built-in is suppressed. Requires an API key with `ep:skills:delete` whose user administers skills in the account.



## OpenAPI

````yaml delete /skills/{skill_id}
openapi: 3.0.3
info:
  version: 0.1.1
  title: Datagrid API
  description: Datagrid API
servers:
  - url: https://api.datagrid.com/v1
security:
  - BearerAuth: []
paths:
  /skills/{skill_id}:
    delete:
      tags:
        - Skills
      summary: Delete skill
      description: >-
        Delete a skill. For company-owned built-in overrides this marks the
        override as removed (hidden from the library) rather than hard-deleting
        it, so the canonical built-in is suppressed. Requires an API key with
        `ep:skills:delete` whose user administers skills in the account.
      operationId: DeleteSkill
      parameters:
        - name: skill_id
          in: path
          required: true
          description: The ID of the skill to delete.
          schema:
            type: string
      responses:
        '204':
          description: Skill deleted successfully
        '403':
          description: Forbidden. The caller does not administer skills in this account.
        '404':
          description: >-
            Not found. The skill does not exist or the caller does not have
            permission to view it.
        '429':
          description: Rate limit exceeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RateLimitError'
components:
  schemas:
    RateLimitError:
      type: object
      description: >-
        Returned when the rate limit is exceeded. Rate limits are enforced per
        teamspace, endpoint path, and HTTP method over a 60-second sliding
        window. Each endpoint may have its own limit — check the
        X-RateLimit-Limit response header for the effective value.
      required:
        - error
        - message
        - retryable
        - status_code
      properties:
        status_code:
          type: integer
          description: The HTTP status code (429).
        statusCode:
          type: integer
          deprecated: true
          description: Deprecated. Use status_code instead.
        error:
          type: string
          enum:
            - rate_limit_exceeded
          description: The error code identifying this as a rate limit error.
        message:
          type: string
          description: A human-readable error message.
        mitigation:
          type: string
          description: Suggested action to resolve the error.
        retryable:
          type: boolean
          description: Whether the request can be retried after a delay.
        details:
          type: object
          properties:
            reason:
              type: string
              description: A detailed explanation of why the rate limit was exceeded.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````