GET me/games/{id}/caneditscore?type={type}

check if user can edit score/check in players for this game

Request Information

Parameters

NameDescriptionAdditional information
id

Define this parameter in the request URI.

type

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "return_value": true,
  "code": 2,
  "message": "sample string 3"
}

application/xml, text/xml

Sample:
<BooleanDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.API.DTO">
  <code>2</code>
  <message>sample string 3</message>
  <return_value>true</return_value>
</BooleanDto>

multipart/form-data

Sample:
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="return_value"

True
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="code"

2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="message"

sample string 3
--MultipartDataMediaFormatterBoundary1q2w3e--