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

# Reset built-in skill override

> Remove the company's override of a built-in skill, reverting all members back to the global default. Idempotent: no-op when no override exists. Requires `ep:skills:write` (account admin).



## OpenAPI

````yaml post /skills/builtin/{builtin_key}/reset
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/builtin/{builtin_key}/reset:
    post:
      tags:
        - Skills
      summary: Reset built-in skill override
      description: >-
        Remove the company's override of a built-in skill, reverting all members
        back to the global default. Idempotent: no-op when no override exists.
        Requires `ep:skills:write` (account admin).
      operationId: ResetBuiltinSkillOverride
      parameters:
        - name: builtin_key
          in: path
          required: true
          description: The built-in skill identifier.
          schema:
            type: string
      responses:
        '204':
          description: Override reset (or no override existed)
        '403':
          description: Forbidden. Account admin required.
        '404':
          description: Built-in skill not found.
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````