Returns a list of qualifications for statistical leaders in a competition.
			GET /v1/{sport}/competitions/{competitionId}/leaders/{statisticCode}/qualification
             
         | Parameter Name | Value | Description | 
|---|---|---|
| Required Parameters | ||
| sport | string | The sport for which you are making the request | 
| competitionId | integer | Unique identifier for the competition. | 
| statisticCode | text | Unique identifier for the statistic. The codes depend upon the sport: | 
| Optional Parameters | ||
| matchType | string | What type of matches the team was in. If not provided, then 'ALL' is assumed. 
 | 
| useExternalForLeague | integer | If this value is set to the leagueId, then the URL parameter competitionIdwill instead refer to theexternalIdfield of the competition entity in that league. | 
Do not supply a request body with this method.
If successful this method returns an array of Leader Qualification resources.
Add new qualifications needed for this statistic to be an official leader. Multiple qualificatiosns for the same parameters are applied as an 'AND' for qualification purposes.
			POST /v1/{sport}/leagues/{leagueId}/leaders/qualification
			
		| Parameter Name | Value | Description | 
|---|---|---|
| Required Parameters | ||
| sport | string | The sport for which you are making the request | 
| Optional Parameters | ||
| minimumResponse | integer | If this value is set to 1 then the response resource will only contain clubIdandexternalId. | 
| bulk | integer | Create multiple records. | 
| useExternalForLeague | integer | If this value is set to the leagueId, then the content of the request body is interpreted differently. See the Request Body section for more information. | 
In the request body supply a Leader Qualification resource. if the bulk parameter is specified then an array 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.
            
competitionIdIf successful this method returns a Leader Qualification resource. If the bulk parameter is specified it will return a list of resources. Any errors returned are against the specific resource.
Delete a qualification for a statistic. This will delete all qualifications for the statistic in the competition specified.
               DELETE /v1/{sport}/competitions/{competitionId}/leaders/{statisticCode}/qualification
              
          | Parameter Name | Value | Description | 
|---|---|---|
| Required Parameters | ||
| sport | string | The sport for which you are making the request | 
| competitionId | integer | The unique identifier for this competition. | 
| statisticCode | text | Unique identifier for the statistic. The codes depend upon the sport: | 
| matchType | string | What type of matches the team was in. If not provided, then 'ALL' is assumed. 
 | 
| useExternalForLeague | integer | If this value is set to the leagueId, then the URL parameter competitionIdwill instead refer to theexternalIdfields of the competition entity in that league. | 
Do not supply a request body with this method.
Successful this method returns SUCCESS.