> ## 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 Tricaster switcher event

> Receive switcher/DDR events from Tricaster via Network Triggers.

Setup in Tricaster:
  Automation → Network Triggers → Add
  Event: On Take / DDR Record Start / DDR Record Stop
  Action: HTTP POST → .../broadcast/tricaster/events/
  Body: {"event": "TAKE", "source": "DDR1", "bulletin_id": "..."}

Currently logs the event. Extend to update on-air state, trigger
downstream workflows, or sync with the Synergy playout state.



## OpenAPI

````yaml /openapi/content.yaml post /api/v1/broadcast/tricaster/events/
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/tricaster/events/:
    post:
      tags:
        - Broadcast
      summary: Receive Tricaster switcher event
      description: |-
        Receive switcher/DDR events from Tricaster via Network Triggers.

        Setup in Tricaster:
          Automation → Network Triggers → Add
          Event: On Take / DDR Record Start / DDR Record Stop
          Action: HTTP POST → .../broadcast/tricaster/events/
          Body: {"event": "TAKE", "source": "DDR1", "bulletin_id": "..."}

        Currently logs the event. Extend to update on-air state, trigger
        downstream workflows, or sync with the Synergy playout state.
      operationId: broadcast_tricaster_event
      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>'

````