POST api/lms/SubmitScore

Request Information

URI Parameters

None.

Body Parameters

ClienScore
NameDescriptionTypeAdditional information
username

string

None.

password

string

None.

usernamegv

string

None.

malophocphan

string

None.

scoretypeid

integer

None.

scorelist

Collection of Scorelist

None.

Request Formats

application/json, text/json

Sample:
{
  "username": "sample string 1",
  "password": "sample string 2",
  "usernamegv": "sample string 3",
  "malophocphan": "sample string 4",
  "scoretypeid": 5,
  "scorelist": [
    {
      "usercode": "sample string 1",
      "score": 2.1
    },
    {
      "usercode": "sample string 1",
      "score": 2.1
    }
  ]
}

application/xml, text/xml

Sample:
<LmsController.ClienScore xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/kWeb.Controllers">
  <malophocphan>sample string 4</malophocphan>
  <password>sample string 2</password>
  <scorelist>
    <LmsController.Scorelist>
      <score>2.1</score>
      <usercode>sample string 1</usercode>
    </LmsController.Scorelist>
    <LmsController.Scorelist>
      <score>2.1</score>
      <usercode>sample string 1</usercode>
    </LmsController.Scorelist>
  </scorelist>
  <scoretypeid>5</scoretypeid>
  <username>sample string 1</username>
  <usernamegv>sample string 3</usernamegv>
</LmsController.ClienScore>

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.