Returns a list of broadcasts relating to a particular match.
			GET /v1/{sport}/matches/{matchId}/broadcasts
			
		| Parameter Name | Value | Description | 
|---|---|---|
| Required Parameters | ||
| sport | string | The sport for which you are making the request | 
| matchId | integer | Unique identifier for the match. | 
| Optional Parameters | ||
| broadcastType | string | Optional filter of broadcastType. | 
| useExternalForLeague | integer | If this value is set to the leagueId for the match, then the URL parameter matchIdwill instead refer to theexternalIdfield of the match. | 
Do not supply a request body with this method.
If successful this method returns an array of Match Broadcast resources.
Get the detail about a specific match broadcast
			GET /v1/{sport}/broadcasts/{broadcastId}
			
		| Parameter Name | Value | Description | 
|---|---|---|
| Required Parameters | ||
| sport | string | The sport for which you are making the request | 
| broadcastId | integer | The unique identifier for this broadcast | 
| Optional Parameters | ||
| useExternalForLeague | integer | If this value is set to the leagueId for the broadcast, then the URL parameter broadastIdwill instead refer to theexternalIdfield of the broadcast. | 
Do not supply a request body with this method.
If successful this method returns a Match Broadcast resource.
Create a new match broadcast
			POST /v1/{sport}/matches/{matchId}/broadcasts
			
		| Parameter Name | Value | Description | 
|---|---|---|
| Required Parameters | ||
| sport | string | The sport for which you are making the request | 
| matchId | integer | Unique identifier for the match. | 
| Optional Parameters | ||
| minimumResponse | integer | If this value is set to 1 then the response resource will only contain personIdandexternalId. | 
| bulk | integer | Create multiple records. | 
| useExternalForLeague | integer | If this value is set to the leagueId for the match, then the URL parameter matchIdwill instead refer to theexternalIdfield of the match.  The content of the request body is interpreted differently. See the Request Body section for more information. | 
In the request body supply a Match Broadcast resource. If the bulk parameter is specified a list of resources is expected. 
If the useExternalForLeague parameter is specified, then the following fields in the resource will be interpreted as the externalId of the specific entity instead of the unique identifier.
            
matchIdIf successful this method returns a Match Broadcast resource.
Update an existing match broadcast
			PUT /v1/{sport}/broadcasts/{broadcastId}
			
		| Parameter Name | Value | Description | 
|---|---|---|
| Required Parameters | ||
| sport | string | The sport for which you are making the request | 
| broadcastId | integer | The unique identifier for this broadcast | 
| Optional Parameters | ||
| useExternalForLeague | integer | If this value is set to the leagueId for the match, then the URL parameter broadcastIdwill instead refer to theexternalIdfield of the broadcast.  The content of the request body is interpreted differently. See the Request Body section for more information. | 
In the request body supply a Match Broadcast resource.
If the useExternalForLeague parameter is specified, then the following fields in the resource will be interpreted as the externalId of the specific entity instead of the unique identifier.
            
broadcastIdIf successful this method returns a Match Broadcaster resource.
Delete an existing match broadcast
			DELETE /v1/{sport}/matches/{matchId}/broadcasts
			DELETE /v1/{sport}/broadcasts/{broadcastId}
			
		| Parameter Name | Value | Description | 
|---|---|---|
| Required Parameters | ||
| sport | string | The sport for which you are making the request | 
| matchId | integer | The unique identifier for this match | 
| Optional Parameters | ||
| broadcastId | inetger | The unique identifier for this match | 
| useExternalForLeague | integer | If this value is set to the leagueId for the broadcast, then the URL parameters matchId & broadcastIdwill instead refer to theexternalIdfields of the respective entities. | 
Do not supply a request body with this method.
Successful this method returns SUCCESS.