POST api/Log/LoadStudentForLog

Request Information

URI Parameters

None.

Body Parameters

LogModel
NameDescriptionTypeAdditional information
lognumber

integer

None.

logmasterid

integer

None.

studentmasterid

integer

None.

academicyearid

integer

None.

companymasterid

integer

None.

financialyearid

integer

None.

loghours

decimal number

None.

logdate

date

None.

createdon

date

None.

modifiedbyid

integer

None.

modifiedon

date

None.

isactive

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "lognumber": 1,
  "logmasterid": 1,
  "studentmasterid": 1,
  "academicyearid": 1,
  "companymasterid": 1,
  "financialyearid": 1,
  "loghours": 1.0,
  "logdate": "2026-07-11T22:46:31.1743247+05:30",
  "createdon": "2026-07-11T22:46:31.1743247+05:30",
  "modifiedbyid": 1,
  "modifiedon": "2026-07-11T22:46:31.1743247+05:30",
  "isactive": 1
}

application/xml, text/xml

Sample:
<LogModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/vcareapi.Models">
  <academicyearid>1</academicyearid>
  <companymasterid>1</companymasterid>
  <createdon>2026-07-11T22:46:31.1743247+05:30</createdon>
  <financialyearid>1</financialyearid>
  <isactive>1</isactive>
  <logdate>2026-07-11T22:46:31.1743247+05:30</logdate>
  <loghours>1</loghours>
  <logmasterid>1</logmasterid>
  <lognumber>1</lognumber>
  <modifiedbyid>1</modifiedbyid>
  <modifiedon>2026-07-11T22:46:31.1743247+05:30</modifiedon>
  <studentmasterid>1</studentmasterid>
</LogModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResultViewModel
NameDescriptionTypeAdditional information
status

boolean

None.

message

string

None.

data

Object

None.

errorCode

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "status": true,
  "message": "sample string 2",
  "data": {},
  "errorCode": 4
}

application/xml, text/xml

Sample:
<HttpResultViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/vcareapi.Models">
  <data />
  <errorCode>4</errorCode>
  <message>sample string 2</message>
  <status>true</status>
</HttpResultViewModel>