POST api/EmployeeAttendance/SaveAttendance

Request Information

URI Parameters

None.

Body Parameters

EmployeeAttendance
NameDescriptionTypeAdditional information
AdmissionNo

string

None.

SessionFk

integer

None.

StudentFk

integer

None.

FullName

string

None.

Gender

string

None.

IsAbsent

boolean

None.

strAbsentDate

string

None.

AbsentDate

date

None.

AttendanceInOut

string

None.

Domain

string

None.

Request Formats

application/json, text/json

Sample:
{
  "AdmissionNo": "sample string 1",
  "SessionFk": 2,
  "StudentFk": 3,
  "FullName": "sample string 4",
  "Gender": "sample string 5",
  "IsAbsent": true,
  "strAbsentDate": "sample string 6",
  "AbsentDate": "2024-09-20T06:29:52.874758+05:30",
  "AttendanceInOut": "sample string 8",
  "Domain": "sample string 9"
}

application/xml, text/xml

Sample:
<EmployeeAttendance xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models.Employee">
  <Domain xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models">sample string 9</Domain>
  <AbsentDate>2024-09-20T06:29:52.874758+05:30</AbsentDate>
  <AdmissionNo>sample string 1</AdmissionNo>
  <AttendanceInOut>sample string 8</AttendanceInOut>
  <FullName>sample string 4</FullName>
  <Gender>sample string 5</Gender>
  <IsAbsent>true</IsAbsent>
  <SessionFk>2</SessionFk>
  <StudentFk>3</StudentFk>
  <strAbsentDate>sample string 6</strAbsentDate>
</EmployeeAttendance>

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.