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

# List automations

> Retrieves all automations in the workspace with their configuration details.



## OpenAPI

````yaml /openapi.json get /automations
openapi: 3.1.0
info:
  title: DocsAutomator API
  version: '2.0'
  description: >-
    REST API for programmatic document generation, automation management, and
    e-signature workflows.
  contact:
    name: DocsAutomator Support
    email: support@docsautomator.co
    url: https://docsautomator.co
servers:
  - url: https://api.docsautomator.co
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Documents
    description: Create documents and manage async jobs
  - name: Automations
    description: CRUD operations for automations
  - name: Templates
    description: Template placeholders and duplication
  - name: E-Signatures
    description: Manage signing sessions, links, and audit trails
  - name: Email
    description: Test email delivery
paths:
  /automations:
    get:
      tags:
        - Automations
      summary: List automations
      description: >-
        Retrieves all automations in the workspace with their configuration
        details.
      operationId: listAutomations
      responses:
        '200':
          description: List of automations
          content:
            application/json:
              schema:
                type: object
                properties:
                  automations:
                    type: array
                    items:
                      $ref: '#/components/schemas/Automation'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    Automation:
      type: object
      properties:
        _id:
          type: string
          description: Automation ID.
        title:
          type: string
        dataSource:
          type: object
          properties:
            name:
              type: string
        dataSourceName:
          type: string
        docTemplateLink:
          type: string
          format: uri
          description: Google Doc template URL.
        newDocumentNameField:
          type: string
        isActive:
          type: boolean
        saveGoogleDoc:
          type: boolean
        locale:
          type: string
        formatNumbersWithLocale:
          type: boolean
        pdfExpiration:
          type: string
          nullable: true
        dateCreated:
          type: string
          format: date-time
        lastPreviewPdf:
          type: string
          format: uri
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error message.
  responses:
    Unauthorized:
      description: Invalid or missing API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Incorrect or missing API key
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key from your workspace settings. Pass as `Authorization: Bearer
        <key>` or `X-API-Key: <key>`. Find it at
        [app.docsautomator.co/settings/workspace/api](https://app.docsautomator.co/settings/workspace/api).

````