1. Help Center
  2. Customer Success Guides

How To: Broadcast Tagging

Reviewing the new workflow conditions for Broadcast Content

Available WKFL Conditions 

          <broadcastAwayTeam operator="Equal" value="Atlanta Braves" />
<username operator="Equal" value="BSSD" />
<broadcastHomeTeam operator="Equal" value="San Diego Padres" />
<broadcastGenre operator="Equal" value="Sports event Baseball" />
<broadcastTitle operator="Equal" value="MLB Baseball" />

Definitions

- How to search for the name of an Away Team 

- How to search by channel, using their call sign (defined in picture below) 

image (11)

- How to search for the name of the Home Team 

- How to search for a specific genre (List of available genres below) 

Baseball
BaseballPlayoff
Basketball
BasketballPlayoff
Cricket
F1
Football
FootballPlayoff
Golf
GolfPlayoff
Hockey
HockeyPlayoff
IndyCar
Lacrosse
LacrossePlayoff
Nascar
Rugby
Soccer
SoccerPlayoff
Tennis

- How to search for the broadcast Title (defined in picture below) 

Screenshot 2022-09-27 103034

Example Workflows

 <rules>
    <rule>
      <triggers>
        <trigger on="NewItem" />
      </triggers>
      <conditions>
        <and>
          <broadcastAwayTeam operator="Equal" value="Atlanta Braves" />
        </and>
      </conditions>
      <actions>
        <addTag value="Away Game" />
      </actions>
    </rule>
 <rule>
      <triggers>
        <trigger on="NewItem" />
      </triggers>
      <conditions>
        <and>
          <username operator="Equal" value="BSEGA1H" />
        </and>
      </conditions>
      <actions>
        <addTag value="Bally Sports Southeast" />
        <addTag value="Home Market" />
      </actions>
    </rule>