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

# Receive Synergy MOS status callback

> Receive mosItemStatus callbacks from Synergy MCR.

Synergy POSTs MOS XML here each time a story slot changes state:
  READY   → cued up, ready to play
  PLAYING → on air
  STOP    → taken off air
  BUSY    → clip loading

Configure in Synergy: MOS → NCS Connections → Upper Port callback URL.
No JWT required — Synergy does not send auth tokens.



## OpenAPI

````yaml /openapi/content.yaml post /api/v1/broadcast/mos/status/
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/status/:
    post:
      tags:
        - Broadcast
      summary: Receive Synergy MOS status callback
      description: |-
        Receive mosItemStatus callbacks from Synergy MCR.

        Synergy POSTs MOS XML here each time a story slot changes state:
          READY   → cued up, ready to play
          PLAYING → on air
          STOP    → taken off air
          BUSY    → clip loading

        Configure in Synergy: MOS → NCS Connections → Upper Port callback URL.
        No JWT required — Synergy does not send auth tokens.
      operationId: broadcast_mos_status
      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>'

````