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

# Delete rundown from Synergy

> Send MOS roDelete to clear the rundown from Synergy after the bulletin airs.



## OpenAPI

````yaml /openapi/content.yaml delete /api/v1/broadcast/mos/{bulletin_id}/delete/
openapi: 3.0.3
info:
  title: Content Service API
  version: 1.0.0
  description: |2-

        **Content Service API** - Comprehensive content(story) and management system.
        
servers:
  - url: https://api.capedigital.co.ke/content
    description: Production
  - url: http://localhost:8000
    description: Local
security: []
paths:
  /api/v1/broadcast/mos/{bulletin_id}/delete/:
    delete:
      tags:
        - Broadcast
      summary: Delete rundown from Synergy
      description: >-
        Send MOS roDelete to clear the rundown from Synergy after the bulletin
        airs.
      operationId: broadcast_mos_delete
      parameters:
        - in: path
          name: bulletin_id
          schema:
            type: string
            format: uuid
          required: true
      responses:
        '204':
          description: No response body
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Enter your JWT token in the format: Bearer <token>'

````