GET api/pitchassessment/getmatches

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of MatchModel
NameDescriptionTypeAdditional information
MatchGuid

globally unique identifier

None.

CompetitionId

globally unique identifier

None.

Team1Name

string

None.

Team2Name

string

None.

StartDate

date

None.

Venue

VenueModel

None.

MatchType

MatchTypeModel

None.

IsInProgress

boolean

None.

IsComplete

boolean

None.

ShowGroundReports

boolean

None.

ShowPitchAssessmentReports

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "MatchGuid": "4dbcca32-1497-4109-b666-819726aa0ac3",
    "CompetitionId": "bd24528c-516c-49f8-aa30-e5951f66d68a",
    "Team1Name": "sample string 3",
    "Team2Name": "sample string 4",
    "StartDate": "2025-12-15T09:22:29.0442962+13:00",
    "Venue": {
      "Name": "sample string 1",
      "gVenueCountry": "sample string 2",
      "IsApproved": true,
      "ModifiedDate": "2025-12-15T09:22:29.0599187+13:00",
      "ModifiedByUserId": 5,
      "ModifiedByInstallationGuid": "47134f33-7a22-44df-9b5b-096bf640a2b6",
      "VenueGuid": "b9028b78-ffa3-4c2d-a544-7d372c9ac77e",
      "Venue_Name": "sample string 8"
    },
    "MatchType": {
      "MatchTypeID": "f92d9bf2-890b-4028-8d29-91fd117aedba",
      "Match_Description": "sample string 2",
      "Display_Name": "sample string 3",
      "Match_Days": 4,
      "Match_Sessions": 5,
      "Match_Innings": 6,
      "Match_Overs": 7,
      "Number_Batsmen": 8,
      "No_Ball_Value": 9,
      "Wide_Value": 10,
      "Power_Play": true,
      "Updated_Power_Play_Rules": true,
      "Super_Sub": true,
      "Free_Hit": true,
      "Minimum_Overs": 15
    },
    "IsInProgress": true,
    "IsComplete": true,
    "ShowGroundReports": true,
    "ShowPitchAssessmentReports": true
  },
  {
    "MatchGuid": "4dbcca32-1497-4109-b666-819726aa0ac3",
    "CompetitionId": "bd24528c-516c-49f8-aa30-e5951f66d68a",
    "Team1Name": "sample string 3",
    "Team2Name": "sample string 4",
    "StartDate": "2025-12-15T09:22:29.0442962+13:00",
    "Venue": {
      "Name": "sample string 1",
      "gVenueCountry": "sample string 2",
      "IsApproved": true,
      "ModifiedDate": "2025-12-15T09:22:29.0599187+13:00",
      "ModifiedByUserId": 5,
      "ModifiedByInstallationGuid": "47134f33-7a22-44df-9b5b-096bf640a2b6",
      "VenueGuid": "b9028b78-ffa3-4c2d-a544-7d372c9ac77e",
      "Venue_Name": "sample string 8"
    },
    "MatchType": {
      "MatchTypeID": "f92d9bf2-890b-4028-8d29-91fd117aedba",
      "Match_Description": "sample string 2",
      "Display_Name": "sample string 3",
      "Match_Days": 4,
      "Match_Sessions": 5,
      "Match_Innings": 6,
      "Match_Overs": 7,
      "Number_Batsmen": 8,
      "No_Ball_Value": 9,
      "Wide_Value": 10,
      "Power_Play": true,
      "Updated_Power_Play_Rules": true,
      "Super_Sub": true,
      "Free_Hit": true,
      "Minimum_Overs": 15
    },
    "IsInProgress": true,
    "IsComplete": true,
    "ShowGroundReports": true,
    "ShowPitchAssessmentReports": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfMatchModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NvPlay.Reporting.Domain.Models.ApiModels">
  <MatchModel>
    <CompetitionId>bd24528c-516c-49f8-aa30-e5951f66d68a</CompetitionId>
    <IsComplete>true</IsComplete>
    <IsInProgress>true</IsInProgress>
    <MatchGuid>4dbcca32-1497-4109-b666-819726aa0ac3</MatchGuid>
    <MatchType>
      <Display_Name>sample string 3</Display_Name>
      <Free_Hit>true</Free_Hit>
      <MatchTypeID>f92d9bf2-890b-4028-8d29-91fd117aedba</MatchTypeID>
      <Match_Days>4</Match_Days>
      <Match_Description>sample string 2</Match_Description>
      <Match_Innings>6</Match_Innings>
      <Match_Overs>7</Match_Overs>
      <Match_Sessions>5</Match_Sessions>
      <Minimum_Overs>15</Minimum_Overs>
      <No_Ball_Value>9</No_Ball_Value>
      <Number_Batsmen>8</Number_Batsmen>
      <Power_Play>true</Power_Play>
      <Super_Sub>true</Super_Sub>
      <Updated_Power_Play_Rules>true</Updated_Power_Play_Rules>
      <Wide_Value>10</Wide_Value>
    </MatchType>
    <ShowGroundReports>true</ShowGroundReports>
    <ShowPitchAssessmentReports>true</ShowPitchAssessmentReports>
    <StartDate>2025-12-15T09:22:29.0442962+13:00</StartDate>
    <Team1Name>sample string 3</Team1Name>
    <Team2Name>sample string 4</Team2Name>
    <Venue>
      <IsApproved>true</IsApproved>
      <ModifiedByInstallationGuid>47134f33-7a22-44df-9b5b-096bf640a2b6</ModifiedByInstallationGuid>
      <ModifiedByUserId>5</ModifiedByUserId>
      <ModifiedDate>2025-12-15T09:22:29.0599187+13:00</ModifiedDate>
      <Name>sample string 1</Name>
      <VenueGuid>b9028b78-ffa3-4c2d-a544-7d372c9ac77e</VenueGuid>
      <Venue_Name>sample string 8</Venue_Name>
      <gVenueCountry>sample string 2</gVenueCountry>
    </Venue>
  </MatchModel>
  <MatchModel>
    <CompetitionId>bd24528c-516c-49f8-aa30-e5951f66d68a</CompetitionId>
    <IsComplete>true</IsComplete>
    <IsInProgress>true</IsInProgress>
    <MatchGuid>4dbcca32-1497-4109-b666-819726aa0ac3</MatchGuid>
    <MatchType>
      <Display_Name>sample string 3</Display_Name>
      <Free_Hit>true</Free_Hit>
      <MatchTypeID>f92d9bf2-890b-4028-8d29-91fd117aedba</MatchTypeID>
      <Match_Days>4</Match_Days>
      <Match_Description>sample string 2</Match_Description>
      <Match_Innings>6</Match_Innings>
      <Match_Overs>7</Match_Overs>
      <Match_Sessions>5</Match_Sessions>
      <Minimum_Overs>15</Minimum_Overs>
      <No_Ball_Value>9</No_Ball_Value>
      <Number_Batsmen>8</Number_Batsmen>
      <Power_Play>true</Power_Play>
      <Super_Sub>true</Super_Sub>
      <Updated_Power_Play_Rules>true</Updated_Power_Play_Rules>
      <Wide_Value>10</Wide_Value>
    </MatchType>
    <ShowGroundReports>true</ShowGroundReports>
    <ShowPitchAssessmentReports>true</ShowPitchAssessmentReports>
    <StartDate>2025-12-15T09:22:29.0442962+13:00</StartDate>
    <Team1Name>sample string 3</Team1Name>
    <Team2Name>sample string 4</Team2Name>
    <Venue>
      <IsApproved>true</IsApproved>
      <ModifiedByInstallationGuid>47134f33-7a22-44df-9b5b-096bf640a2b6</ModifiedByInstallationGuid>
      <ModifiedByUserId>5</ModifiedByUserId>
      <ModifiedDate>2025-12-15T09:22:29.0599187+13:00</ModifiedDate>
      <Name>sample string 1</Name>
      <VenueGuid>b9028b78-ffa3-4c2d-a544-7d372c9ac77e</VenueGuid>
      <Venue_Name>sample string 8</Venue_Name>
      <gVenueCountry>sample string 2</gVenueCountry>
    </Venue>
  </MatchModel>
</ArrayOfMatchModel>