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

# Send rundown to Synergy

> Push a bulletin's ordered story rundown to Synergy MCR via MOS roCreate.

Called by a producer in the CRM when the bulletin is locked and ready.
Synergy receives the full ordered list of stories and prepares them for playout.
Use PUT to update an already-sent rundown (sends roReplace instead).



## OpenAPI

````yaml /openapi/content.yaml post /api/v1/broadcast/mos/{bulletin_id}/
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}/:
    post:
      tags:
        - Broadcast
      summary: Send rundown to Synergy
      description: >-
        Push a bulletin's ordered story rundown to Synergy MCR via MOS roCreate.


        Called by a producer in the CRM when the bulletin is locked and ready.

        Synergy receives the full ordered list of stories and prepares them for
        playout.

        Use PUT to update an already-sent rundown (sends roReplace instead).
      operationId: broadcast_mos_send
      parameters:
        - in: path
          name: bulletin_id
          schema:
            type: string
            format: uuid
          required: true
      responses:
        '200':
          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>'

````