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

# Update Pipeline Schedule

> Update a pipeline schedule (status, interval, start_time).



## OpenAPI

````yaml /api-reference/openapi.json put /api/pipelines/{pipeline_uuid}/schedules/{schedule_id}
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.1.2
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /api/pipelines/{pipeline_uuid}/schedules/{schedule_id}:
    put:
      tags:
        - scheduler
      summary: Update Pipeline Schedule
      description: Update a pipeline schedule (status, interval, start_time).
      operationId: >-
        update_pipeline_schedule_api_pipelines__pipeline_uuid__schedules__schedule_id__put
      parameters:
        - name: pipeline_uuid
          in: path
          required: true
          schema:
            type: string
            title: Pipeline Uuid
        - name: schedule_id
          in: path
          required: true
          schema:
            type: string
            title: Schedule Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateScheduleRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    UpdateScheduleRequest:
      properties:
        status:
          anyOf:
            - type: string
            - type: 'null'
          title: Status
        schedule_interval:
          anyOf:
            - type: string
            - type: 'null'
          title: Schedule Interval
        start_time:
          anyOf:
            - type: string
            - type: 'null'
          title: Start Time
      type: object
      title: UpdateScheduleRequest
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````

## Related topics

- [List Pipeline Schedules](/api-reference/scheduler/list-pipeline-schedules.md)
- [Scheduler](/guides/scheduler.md)
- [List Pipelines](/api-reference/scheduler/list-pipelines.md)
- [Cancel Pipeline Run](/api-reference/scheduler/cancel-pipeline-run.md)
- [Get Pipeline Run](/api-reference/scheduler/get-pipeline-run.md)
