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

# List Report Schedules



## OpenAPI

````yaml /openapi/product/scheduled-reports-api.yaml get /api/content/v1/reportschedules
openapi: 3.1.0
info:
  title: Scheduled Reports API
  version: 1.0.0
  description: Scheduled Reports API
servers:
  - url: https://{instance}.domo.com
    variables:
      instance:
        default: YOUR_INSTANCE
        description: Domo instance subdomain.
security:
  - DomoDeveloperToken: []
paths:
  /api/content/v1/reportschedules:
    get:
      tags:
        - Scheduled Reports API
      summary: List Report Schedules
      operationId: listReportSchedules
      parameters:
        - in: query
          name: filter
          schema:
            type: string
            default: USER
          description: Filter type for the schedules
        - in: query
          name: title
          schema:
            type: string
            default: ''
          description: Filter by title
        - in: query
          name: limit
          schema:
            type: integer
            default: 0
          description: Number of items to return
        - in: query
          name: skip
          schema:
            type: integer
            default: 0
          description: Number of items to skip
        - in: query
          name: orderBy
          schema:
            type: string
            default: startDate
            enum:
              - startDate
              - nextRunDate
              - title
          description: Field to sort by
        - in: query
          name: isAscending
          schema:
            type: boolean
            default: false
          description: Sort in ascending order
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ReportScheduleItem'
              examples:
                example:
                  value:
                    - id: 123456
                      reportViewId: 789012
                      pageId: 345678
                      title: Monthly Sales Report
                      viewName: Sales Dashboard
                      type: RECURRING
                      ownerId: 901234
                      embedViewId: 567890
                      owner: true
                      cardCount: 5
                      recipientCount: 10
                      cardId: 234567
                      schedule:
                        frequency: MONTHLY
                        daysToRun: '1'
                        hourOfDay: 9
                        minOfHour: 0
                        timezone: America/New_York
                        enabled: true
        '403':
          description: Forbidden
        '409':
          description: Conflict
components:
  schemas:
    ReportScheduleItem:
      type: object
      properties:
        id:
          type: integer
        reportViewId:
          type: integer
        pageId:
          type: integer
        title:
          type: string
        viewName:
          type: string
        type:
          type: string
        ownerId:
          type: integer
        embedViewId:
          type: integer
        owner:
          type: boolean
        cardCount:
          type: integer
        recipientCount:
          type: integer
        cardId:
          type: integer
        schedule:
          $ref: '#/components/schemas/ReportSchedule'
    ReportSchedule:
      type: object
      properties:
        frequency:
          type: string
        daysToRun:
          type: string
        hourOfDay:
          type: integer
        minOfHour:
          type: integer
        timezone:
          type: string
        enabled:
          type: boolean
        nextRunDate:
          type: integer
          description: Epoch milliseconds
        additionalRecipients:
          type: array
          items:
            $ref: '#/components/schemas/ReportScheduleRecipient'
    ReportScheduleRecipient:
      type: object
      properties:
        type:
          type: string
          enum:
            - EMAIL
        value:
          type: string
  securitySchemes:
    DomoDeveloperToken:
      type: apiKey
      in: header
      name: X-DOMO-Developer-Token

````