> ## 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 all eligible running pipelines in the authenticated company. The request is accepted before reconciliation completes.



## OpenAPI

````yaml https://raw.githubusercontent.com/artie-labs/artie-api-spec/refs/heads/master/openapi.yaml post /company/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:
  /company/automatic-schema-changes:
    post:
      tags:
        - Company
      summary: Trigger automatic schema changes
      description: >-
        Enqueues automatic schema changes for all eligible running pipelines in
        the authenticated company. The request is accepted before reconciliation
        completes.
      operationId: company_trigger_automatic_schema_changes
      responses:
        '202':
          description: Accepted
        '403':
          description: Forbidden
        '500':
          description: Internal Server Error
components:
  securitySchemes:
    ApiKey:
      description: API key passed as a Bearer token in the Authorization header.
      scheme: bearer
      type: http

````