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

# List automation rules

> Retrieves all automation rules for the authenticated user



## OpenAPI

````yaml /api-reference/oda-automation-service-1.0.0.yml get /automation/rules
openapi: 3.0.1
info:
  title: ODA Automation Service
  description: ODA Automation Service
  contact:
    name: stCarolas
    email: stcarolas@gmail.com
  license:
    name: GPL-3.0
    url: https://www.gnu.org/licenses/gpl-3.0.en.html
  version: 1.0.0
servers: []
security: []
tags:
  - name: Automation
    description: Automation operations for managing rules and variables
  - name: Automation Commands
    description: Commands for updating automation state
paths:
  /automation/rules:
    get:
      tags:
        - Automation
      summary: List automation rules
      description: Retrieves all automation rules for the authenticated user
      operationId: listAutomations
      responses:
        '200':
          description: List of automation rules
          content:
            application/json:
              schema:
                allOf: []
                anyOf: []
                oneOf: []
        '401':
          description: Unauthorized - user not authenticated

````