POST api/V2/matches/report/time

Update Match report when changes are made

Request Information

URI Parameters

None.

Body Parameters

MatchReport
NameDescriptionTypeAdditional information
Id

integer

None.

MatchId

integer

None.

MatchStartTime

date

None.

MatchActualStartTime

date

None.

Match1HalfEndTime

date

None.

Match2HalfStartTime

date

None.

Match2HalfEndTime

date

None.

HasStarted1Half

boolean

None.

HasStarted2Half

boolean

None.

HasEnded1Half

boolean

None.

HasEnded2Half

boolean

None.

StartedById

string

None.

StartedByName

string

None.

HalfTimeBreak

integer

None.

MatchPeriod

integer

None.

NumberofMatchPeriods

integer

None.

HomeTeamGoals

integer

None.

AwayTeamGoals

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "matchId": 2,
  "matchStartTime": "2026-01-01T10:37:16.8446013Z",
  "matchActualStartTime": "2026-01-01T10:37:16.8446013Z",
  "match1HalfEndTime": "2026-01-01T10:37:16.8446013Z",
  "match2HalfStartTime": "2026-01-01T10:37:16.8446013Z",
  "match2HalfEndTime": "2026-01-01T10:37:16.8446013Z",
  "hasStarted1Half": true,
  "hasStarted2Half": true,
  "hasEnded1Half": true,
  "hasEnded2Half": true,
  "startedById": "sample string 12",
  "startedByName": "sample string 13",
  "halfTimeBreak": 14,
  "matchPeriod": 15,
  "numberofMatchPeriods": 16,
  "homeTeamGoals": 17,
  "awayTeamGoals": 18
}

application/xml, text/xml

Sample:
<MatchReport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/oiback.Classes.V2">
  <AwayTeamGoals>18</AwayTeamGoals>
  <HalfTimeBreak>14</HalfTimeBreak>
  <HasEnded1Half>true</HasEnded1Half>
  <HasEnded2Half>true</HasEnded2Half>
  <HasStarted1Half>true</HasStarted1Half>
  <HasStarted2Half>true</HasStarted2Half>
  <HomeTeamGoals>17</HomeTeamGoals>
  <Id>1</Id>
  <Match1HalfEndTime>2026-01-01T11:37:16.8446013+01:00</Match1HalfEndTime>
  <Match2HalfEndTime>2026-01-01T11:37:16.8446013+01:00</Match2HalfEndTime>
  <Match2HalfStartTime>2026-01-01T11:37:16.8446013+01:00</Match2HalfStartTime>
  <MatchActualStartTime>2026-01-01T11:37:16.8446013+01:00</MatchActualStartTime>
  <MatchId>2</MatchId>
  <MatchPeriod>15</MatchPeriod>
  <MatchStartTime>2026-01-01T11:37:16.8446013+01:00</MatchStartTime>
  <NumberofMatchPeriods>16</NumberofMatchPeriods>
  <StartedById>sample string 12</StartedById>
  <StartedByName>sample string 13</StartedByName>
</MatchReport>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.