GET api/competitions/{competitionID}/goaliestatistics

Gets the goalie statistics for a competition in IBIS

Request Information

URI Parameters

NameDescriptionTypeAdditional information
competitionID

The ID of the competition to fetch the goalie statistics for

integer

Required

Body Parameters

None.

Response Information

Resource Description

A GoalieStatistics object containing a list of GoalieStatisticsRow objects sorted by GoalieStatisticsRow .SavePercentage, .ShotsAgainst descending order and .GoalsAgainst in ascending order

GoalieStatistics
NameDescriptionTypeAdditional information
GoalieStatisticsRows

Contains the GoalieStatisticRow objects for this GoalieStatistics object

Collection of GoalieStatisticsRow

None.

Response Formats

application/json, text/json

Sample:
{
  "GoalieStatisticsRows": [
    {
      "PlayerID": 1,
      "PlayerName": "sample string 2",
      "ClubID": 3,
      "ClubName": "sample string 4",
      "TeamID": 5,
      "TeamName": "sample string 6",
      "MatchesPlayed": 7,
      "ShotsAgainst": 8,
      "GoalsAgainst": 9,
      "SavePercentage": -12.5
    },
    {
      "PlayerID": 1,
      "PlayerName": "sample string 2",
      "ClubID": 3,
      "ClubName": "sample string 4",
      "TeamID": 5,
      "TeamName": "sample string 6",
      "MatchesPlayed": 7,
      "ShotsAgainst": 8,
      "GoalsAgainst": 9,
      "SavePercentage": -12.5
    }
  ]
}

application/xml, text/xml

Sample:
<GoalieStatistics xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IbisApi.Models">
  <GoalieStatisticsRows>
    <GoalieStatisticsRow>
      <ClubID>3</ClubID>
      <ClubName>sample string 4</ClubName>
      <GoalsAgainst>9</GoalsAgainst>
      <MatchesPlayed>7</MatchesPlayed>
      <PlayerID>1</PlayerID>
      <PlayerName>sample string 2</PlayerName>
      <ShotsAgainst>8</ShotsAgainst>
      <TeamID>5</TeamID>
      <TeamName>sample string 6</TeamName>
    </GoalieStatisticsRow>
    <GoalieStatisticsRow>
      <ClubID>3</ClubID>
      <ClubName>sample string 4</ClubName>
      <GoalsAgainst>9</GoalsAgainst>
      <MatchesPlayed>7</MatchesPlayed>
      <PlayerID>1</PlayerID>
      <PlayerName>sample string 2</PlayerName>
      <ShotsAgainst>8</ShotsAgainst>
      <TeamID>5</TeamID>
      <TeamName>sample string 6</TeamName>
    </GoalieStatisticsRow>
  </GoalieStatisticsRows>
</GoalieStatistics>