POST api/Employee/UpdateEMPAttendance

Request Information

URI Parameters

None.

Body Parameters

Collection of UploadEMPAtt
NameDescriptionTypeAdditional information
empcode

integer

None.

date

date

None.

month

integer

None.

year

integer

None.

intime

string

None.

outtime

string

None.

reason

string

None.

remark

string

None.

updateby

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "empcode": 1,
    "date": "2025-05-10T10:48:06.2337291+05:30",
    "month": 3,
    "year": 4,
    "intime": "sample string 5",
    "outtime": "sample string 6",
    "reason": "sample string 7",
    "remark": "sample string 8",
    "updateby": "sample string 9"
  },
  {
    "empcode": 1,
    "date": "2025-05-10T10:48:06.2337291+05:30",
    "month": 3,
    "year": 4,
    "intime": "sample string 5",
    "outtime": "sample string 6",
    "reason": "sample string 7",
    "remark": "sample string 8",
    "updateby": "sample string 9"
  }
]

application/xml, text/xml

Sample:
<ArrayOfUploadEMPAtt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JankariPortalPIFAPI.Models">
  <UploadEMPAtt>
    <date>2025-05-10T10:48:06.2337291+05:30</date>
    <empcode>1</empcode>
    <intime>sample string 5</intime>
    <month>3</month>
    <outtime>sample string 6</outtime>
    <reason>sample string 7</reason>
    <remark>sample string 8</remark>
    <updateby>sample string 9</updateby>
    <year>4</year>
  </UploadEMPAtt>
  <UploadEMPAtt>
    <date>2025-05-10T10:48:06.2337291+05:30</date>
    <empcode>1</empcode>
    <intime>sample string 5</intime>
    <month>3</month>
    <outtime>sample string 6</outtime>
    <reason>sample string 7</reason>
    <remark>sample string 8</remark>
    <updateby>sample string 9</updateby>
    <year>4</year>
  </UploadEMPAtt>
</ArrayOfUploadEMPAtt>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

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