POST api/Student/SaveStudentLog

Request Information

URI Parameters

None.

Body Parameters

StudentLog
NameDescriptionTypeAdditional information
LoginUserId

integer

None.

Username

string

None.

LoginStatus

string

None.

App

string

None.

Request Formats

application/json, text/json

Sample:
{
  "loginUserId": 1,
  "username": "sample string 2",
  "loginStatus": "sample string 3",
  "app": "sample string 4"
}

application/xml, text/xml

Sample:
<StudentLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DTO">
  <App>sample string 4</App>
  <LoginStatus>sample string 3</LoginStatus>
  <LoginUserId>1</LoginUserId>
  <Username>sample string 2</Username>
</StudentLog>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>