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

# List workflow schedules

> Lists the org's workflow schedules (newest first). Filter with `workflowId`, `status`, `owner` (org | chatter) and `userId` (the user a schedule runs as). A session token only sees its own user's schedules.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/workflow-schedules
openapi: 3.1.0
info:
  title: Sidenet API
  version: 1.0.0
  description: >-
    Sidenet HTTP endpoints exposed by the Sidenet Studio. All routes require an
    api key that can be generated through the studio in studio.sidenet.ai.
servers:
  - url: https://api.sidenet.ai
security:
  - bearerAuth: []
paths:
  /v1/workflow-schedules:
    get:
      tags:
        - Workflows
      summary: List workflow schedules
      description: >-
        Lists the org's workflow schedules (newest first). Filter with
        `workflowId`, `status`, `owner` (org | chatter) and `userId` (the user a
        schedule runs as). A session token only sees its own user's schedules.
      parameters:
        - name: workflowId
          in: query
          required: false
          schema:
            type: string
            example: 4c2f9e18-7a63-4d05-b1e8-93a7c0f2d641
        - name: status
          in: query
          required: false
          schema:
            type: string
            enum:
              - active
              - paused
              - completed
              - disabled
        - name: owner
          in: query
          required: false
          schema:
            type: string
            enum:
              - org
              - chatter
        - name: userId
          in: query
          required: false
          schema:
            type: string
            example: user_4821
      responses:
        '200':
          description: The schedules
          content:
            application/json:
              schema:
                type: object
                properties:
                  schedules:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        workflow_id:
                          type: string
                          format: uuid
                        owner_kind:
                          type: string
                          enum:
                            - org
                            - chatter
                        user_id:
                          type: string
                          description: The user the runs execute as.
                        status:
                          type: string
                          enum:
                            - active
                            - paused
                            - completed
                            - disabled
                        recurrence:
                          type: object
                        cron:
                          type: string
                          nullable: true
                        run_at:
                          type: string
                          format: date-time
                          nullable: true
                        description:
                          type: string
                          description: >-
                            Human form, e.g. "every weekday at 08:00
                            Europe/Paris".
                        timezone:
                          type: string
                        next_fire_at:
                          type: string
                          format: date-time
                          nullable: true
                        last_fire_at:
                          type: string
                          format: date-time
                          nullable: true
                        last_run_status:
                          type: string
                          nullable: true
                        notify:
                          type: string
                          enum:
                            - thread
                            - none
                        thread_title:
                          type: string
                          nullable: true
        '400':
          description: Missing headers
      security:
        - bearerAuth: []
        - sessionToken: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Organization API key, generated in studio.sidenet.ai. Backend only —
        never in a browser.
    sessionToken:
      type: http
      scheme: bearer
      description: >-
        Session token (`snat_…`) minted by POST /v1/token. Carries the
        organization and the end user; safe in a browser.

````