> ## 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.

# Get workflow schedule

> One schedule. A session token only sees its own user's schedules (404 otherwise).



## OpenAPI

````yaml /api-reference/openapi.json get /v1/workflow-schedules/{id}
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/{id}:
    get:
      tags:
        - Workflows
      summary: Get workflow schedule
      description: >-
        One schedule. A session token only sees its own user's schedules (404
        otherwise).
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            example: 5b1c2d3e-4f60-4a7b-8c9d-0e1f2a3b4c5d
      responses:
        '200':
          description: The schedule
          content:
            application/json:
              schema:
                type: object
                properties:
                  schedule:
                    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
        '404':
          description: Not found
      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.

````