list all authors for the workspace.md

List all authors for the workspace

OpenAPI

openapi: 3.0.0
info:
  title: BlogBowl API
  description: >-
    REST API for managing blog pages, posts, authors, newsletters, and
    subscribers.
  version: 1.0.0
  x-copyright: null
servers:
  - url: https://app.blogbowl.io/api/v1
security: []
tags:
  - name: Authors
  - name: Categories
  - name: Emails
  - name: Images
  - name: Newsletters
  - name: Pages
  - name: Posts
  - name: Subscribers
paths:
  /authors:
    get:
      tags:
        - Authors
      summary: List all authors for the workspace
      operationId: get_authors
      parameters:
        - name: active
          in: query
          description: Filter by active flag (defaults to true)
          schema:
            type: boolean
            default: true
        - name: page
          in: query
          description: Page number
          schema:
            type: number
            default: 1
        - name: size
          in: query
          description: 'Items per page (max: 100)'
          schema:
            type: number
            default: 10
      responses:
        '200':
          description: Paginated list of authors
          headers: {}