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

# Admin List Task Types

> List every (category, task_type) with its effective visibility state.

Missing override → implied `live`. Override rows only exist when the state
has been changed away from live (sparse overlay).



## OpenAPI

````yaml /openapi.json get /api/v1/admin/task-types
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/admin/task-types:
    get:
      tags:
        - Admin
      summary: Admin List Task Types
      description: >-
        List every (category, task_type) with its effective visibility state.


        Missing override → implied `live`. Override rows only exist when the
        state

        has been changed away from live (sparse overlay).
      operationId: admin_list_task_types_api_v1_admin_task_types_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````