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

# Run workflow schedule now

> Fires the schedule immediately (out of band — the next regular run is unchanged): runs the workflow as its user with the schedule's input and credentials, files the result thread when notify=thread. Returns the run row.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/workflow-schedules/{id}/run-now
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}/run-now:
    post:
      tags:
        - Workflows
      summary: Run workflow schedule now
      description: >-
        Fires the schedule immediately (out of band — the next regular run is
        unchanged): runs the workflow as its user with the schedule's input and
        credentials, files the result thread when notify=thread. Returns the run
        row.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            example: 5b1c2d3e-4f60-4a7b-8c9d-0e1f2a3b4c5d
      responses:
        '200':
          description: The run
          content:
            application/json:
              schema:
                type: object
                properties:
                  run:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      workflow_id:
                        type: string
                        format: uuid
                      schedule_id:
                        type: string
                        format: uuid
                        nullable: true
                      trigger:
                        type: string
                        enum:
                          - schedule
                          - run_now
                          - manual
                          - test
                      status:
                        type: string
                        enum:
                          - running
                          - succeeded
                          - failed
                          - skipped
                      started_at:
                        type: string
                        format: date-time
                      finished_at:
                        type: string
                        format: date-time
                        nullable: true
                      text:
                        type: string
                        nullable: true
                        description: >-
                          The text posted to the thread: the workflow's
                          output_text rendered against this run, else a
                          completion notice with the output attached.
                      error:
                        type: string
                        nullable: true
                      thread_id:
                        type: string
                        nullable: true
                        description: >-
                          The conversation the result was posted to, when
                          notify=thread.
                      request_id:
                        type: string
                        nullable: true
                        description: Joins the run to its trace.
                  thread_id:
                    type: string
                    nullable: true
                  text:
                    type: string
                    nullable: true
                    description: The text posted to the thread.
        '400':
          description: Schedule cannot run
        '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.

````