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

# Delete a dashboard refresh schedule

> Delete a Mage schedule trigger by ID.



## OpenAPI

````yaml /api-reference/openapi.json delete /api/v1/dashboards/{dashboard_id}/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/v1/dashboards/{dashboard_id}/schedules/{schedule_id}:
    delete:
      tags:
        - dashboard-refresh
      summary: Delete a dashboard refresh schedule
      description: Delete a Mage schedule trigger by ID.
      operationId: >-
        delete_dashboard_schedule_api_v1_dashboards__dashboard_id__schedules__schedule_id__delete
      parameters:
        - name: dashboard_id
          in: path
          required: true
          schema:
            type: string
            title: Dashboard Id
        - name: schedule_id
          in: path
          required: true
          schema:
            type: string
            title: Schedule Id
      responses:
        '204':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    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 refresh schedules for a dashboard](/api-reference/dashboard-refresh/list-refresh-schedules-for-a-dashboard.md)
- [Schedule automatic refresh of a dashboard via an agent](/api-reference/dashboard-refresh/schedule-automatic-refresh-of-a-dashboard-via-an-agent.md)
- [Delete a dashboard](/api-reference/dashboards/delete-a-dashboard.md)
- [Schedule automatic refresh of a chart via an agent](/api-reference/chart-refresh/schedule-automatic-refresh-of-a-chart-via-an-agent.md)
- [Remove a component from a dashboard](/api-reference/dashboards/remove-a-component-from-a-dashboard.md)
