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

# List a settings profile's versions

> The profile's version history as a bare array of
``{version, tags, created_at, is_current}`` rows — NO body. 404 for an absent
name.



## OpenAPI

````yaml /openapi.json get /api/config/profiles/{name}/versions
openapi: 3.1.0
info:
  description: The operator HTTP surface served under /api/*.
  title: tai42-skeleton API
  version: 14.0.2
servers: []
security: []
paths:
  /api/config/profiles/{name}/versions:
    get:
      tags:
        - config
      summary: List a settings profile's versions
      description: >-
        The profile's version history as a bare array of

        ``{version, tags, created_at, is_current}`` rows — NO body. 404 for an
        absent

        name.
      operationId: get_api_config_profiles_name_versions
      parameters:
        - in: path
          name: name
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    $ref: '#/components/schemas/ProfileVersionListResponse'
                required:
                  - data
                type: object
          description: Success.
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Missing or invalid api key.
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Resource not found.
        '501':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Error.
      security:
        - ApiKeyAuth: []
components:
  schemas:
    ProfileVersionListResponse:
      description: The bare array of settings-profile version-history rows.
      items:
        $ref: '#/components/schemas/ProfileVersionSummary'
      title: ProfileVersionListResponse
      type: array
    Error:
      properties:
        code:
          description: >-
            Stable machine-readable reason a client keys a dedicated error state
            on, present on refusals that opt in (e.g. a 501 not-configured
            refusal). Optional: absent when the error carries only a
            human-readable message.
          type: string
        error:
          type: string
      required:
        - error
      type: object
    ProfileVersionSummary:
      description: >-
        One row of a settings-profile version history. ``created_at`` is an
        ISO-8601

        timestamp string; ``is_current`` marks the active version.
      properties:
        created_at:
          title: Created At
          type: string
        is_current:
          title: Is Current
          type: boolean
        tags:
          items:
            type: string
          title: Tags
          type: array
        version:
          title: Version
          type: integer
      required:
        - version
        - tags
        - created_at
        - is_current
      title: ProfileVersionSummary
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: x-api-key
      type: apiKey

````