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

# Trigger automatic schema changes

> Enqueues automatic schema changes for one eligible pipeline. Set forceRefresh to bypass the two-hour cooldown for this execution. The request is accepted before reconciliation completes.



## OpenAPI

````yaml https://raw.githubusercontent.com/artie-labs/artie-api-spec/refs/heads/master/openapi.yaml post /pipelines/{uuid}/automatic-schema-changes
openapi: 3.1.0
info:
  description: External API endpoints for Artie
  title: Artie API
  version: v1.0.81
servers:
  - url: https://api.artie.com
security:
  - ApiKey: []
paths:
  /pipelines/{uuid}/automatic-schema-changes:
    post:
      tags:
        - Pipelines
      summary: Trigger automatic schema changes
      description: >-
        Enqueues automatic schema changes for one eligible pipeline. Set
        forceRefresh to bypass the two-hour cooldown for this execution. The
        request is accepted before reconciliation completes.
      operationId: pipeline_trigger_automatic_schema_changes
      parameters:
        - in: path
          name: uuid
          required: true
          schema:
            type: string
        - in: query
          name: forceRefresh
          schema:
            type: boolean
      responses:
        '202':
          description: Accepted
        '404':
          description: Not Found
        '409':
          description: Conflict
        '500':
          description: Internal Server Error
components:
  securitySchemes:
    ApiKey:
      description: API key passed as a Bearer token in the Authorization header.
      scheme: bearer
      type: http

````