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

# config/history

> List config history rows with publish-time diff metadata. Requires the `configuration:read` permission.



## OpenAPI

````yaml https://provisioning.cloudx.io/api/v1/openapi.yaml get /config/history
openapi: 3.0.3
info:
  title: CloudX API
  description: >-
    Use the CloudX API to retrieve reporting metrics, inspect auctions, and read
    account configuration.
  version: 1.0.0
servers:
  - url: https://provisioning.cloudx.io/api/v1
security: []
tags:
  - name: Authentication
    description: Validate CloudX API keys and inspect authenticated account details.
  - name: Reporting
    description: >-
      Retrieve CloudX reporting metrics for apps, ad units, bidders, and
      exports.
  - name: Configuration
    description: Read live, draft, and published CloudX account configuration.
  - name: Auction Inspection
    description: Inspect auctions, rounds, bids, and related delivery details.
paths:
  /config/history:
    get:
      tags:
        - Configuration
      summary: config/history
      description: >-
        List config history rows with publish-time diff metadata. Requires the
        `configuration:read` permission.
      operationId: getConfigHistory
      parameters:
        - in: query
          name: since
          description: >-
            Only include configuration rows created at or after this time.
            Supports RFC3339 timestamps or YYYY-MM-DD dates.
          schema:
            type: string
          example: '2026-05-01'
        - in: query
          name: author
          description: Filter by creator user ID, email, or name substring.
          schema:
            type: string
          example: alice@example.com
        - in: query
          name: include_drafts
          description: >-
            Whether to include configuration drafts. By default, only published
            versions are returned.
          schema:
            type: boolean
          example: false
        - in: query
          name: limit
          description: Maximum number of rows to return.
          schema:
            type: integer
            format: int32
            minimum: 1
            maximum: 50
            default: 50
          example: 50
      responses:
        '200':
          description: Config history rows.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConfigHistoryResponse'
        '400':
          description: Invalid request parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Forbidden.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    ConfigHistoryResponse:
      type: object
      required:
        - entries
      properties:
        entries:
          type: array
          maxItems: 50
          items:
            $ref: '#/components/schemas/ConfigHistoryEntry'
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
    ConfigHistoryEntry:
      type: object
      required:
        - id
        - account_id
        - kind
        - created_at
      properties:
        id:
          type: string
        account_id:
          type: string
        kind:
          type: string
          enum:
            - version
            - draft
        version_number:
          type: integer
          format: int32
        version_label:
          type: string
        created_at:
          type: string
        created_by_user_id:
          type: string
        created_by_name:
          type: string
        description:
          type: string
        diff_additions:
          type: integer
          format: int32
        diff_deletions:
          type: integer
          format: int32
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        Create or manage API keys in [CloudX
        Settings](https://app.cloudx.io/settings/api-keys).
      x-default: YOUR_CLOUDX_API_KEY

````