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

# Create Automation



## OpenAPI

````yaml POST /automations
openapi: 3.0.0
info:
  title: Closer Intellect AI API
  description: >-
    The core API documentation and interactive playground for Closer Intellect
    AI.
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /automations:
    post:
      tags:
        - Automations
      summary: Create a brand new automation sequence with custom steps
      operationId: AutomationsController_createAutomation
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateAutomationDto'
      responses:
        '201':
          description: Automation created successfully
      security:
        - bearer: []
components:
  schemas:
    CreateAutomationDto:
      type: object
      properties:
        name:
          type: string
          example: New Follow-up Sequence
        description:
          type: string
          example: Automatic follow-up for new leads
        steps:
          type: array
          items:
            $ref: '#/components/schemas/AutomationStepDto'
      required:
        - name
        - steps
    AutomationStepDto:
      type: object
      properties: {}
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````