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

# List audit actions

> The catalogue of every action the log can contain, sorted by name, with its category. The console builds its action filter from it.




## OpenAPI

````yaml /openapi.json get /api/auditLogs.actions
openapi: 3.0.3
info:
  title: Notifuse API
  description: API for Notifuse - a transactional email and newsletter management platform
  version: 1.0.0
  contact:
    name: Notifuse Support
    url: https://www.notifuse.com/support
    email: hello@notifuse.com
  license:
    name: BUSL-1.1
    url: https://github.com/Notifuse/notifuse/blob/main/LICENSE
servers:
  - url: https://{notifuseDomain}
    description: Customer-specific Notifuse API server
    variables:
      notifuseDomain:
        description: Your unique Notifuse domain
        default: demo.notifuse.com
security: []
paths:
  /api/auditLogs.actions:
    get:
      tags:
        - Audit logs
      summary: List audit actions
      description: >
        The catalogue of every action the log can contain, sorted by name, with
        its category. The console builds its action filter from it.
      operationId: listAuditActions
      responses:
        '200':
          description: The catalogue
          content:
            application/json:
              schema:
                type: object
                properties:
                  actions:
                    type: array
                    items:
                      $ref: '#/components/schemas/AuditActionDescriptor'
                  categories:
                    type: array
                    items:
                      type: string
        '401':
          description: Missing or expired credential
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    AuditActionDescriptor:
      type: object
      properties:
        action:
          type: string
          example: templates.update
        category:
          type: string
          example: templates
        target_type:
          type: string
          example: template
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Error message
      required:
        - error
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API token for authentication

````