GET v2/networks/{networkid}/teams/{id}/views/editgamescore?start={start}&end={end}&limit={limit}&page={page}&sort={sort}

Get score view model for games in a datetime range for a specific team

Request Information

Parameters

NameDescriptionAdditional information
id
the team id

Define this parameter in the request URI.

start
start time

Define this parameter in the request URI.

end
end time

Define this parameter in the request URI.

limit

Define this parameter in the request URI.

page

Define this parameter in the request URI.

sort
sort by start date asc or desc

Define this parameter in the request URI.

networkid
No documentation available.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "paged_records": [
    {},
    {},
    {}
  ],
  "page": 1,
  "limit": 2,
  "total": 3
}

application/xml, text/xml

Sample:
<PagedDataDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.API.DTO">
  <limit>2</limit>
  <page>1</page>
  <paged_records xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:anyType />
    <d2p1:anyType />
    <d2p1:anyType />
  </paged_records>
  <total>3</total>
</PagedDataDto>