POST api/Employee/AddExcelEmployee

Request Information

URI Parameters

None.

Body Parameters

RequestEmployeeExcelCreate
NameDescriptionTypeAdditional information
employeeExcelList

Collection of EmployeeExcelCreate

None.

Request Formats

application/json, text/json

Sample:
{
  "employeeExcelList": [
    {
      "EmployeeNumber": "sample string 1",
      "Title": "sample string 2",
      "FirstName": "sample string 3",
      "LastName": "sample string 4",
      "FullName": "sample string 5",
      "Department": "sample string 6",
      "Position": "sample string 7",
      "MobileNo": "sample string 8",
      "CompanyID": 9
    },
    {
      "EmployeeNumber": "sample string 1",
      "Title": "sample string 2",
      "FirstName": "sample string 3",
      "LastName": "sample string 4",
      "FullName": "sample string 5",
      "Department": "sample string 6",
      "Position": "sample string 7",
      "MobileNo": "sample string 8",
      "CompanyID": 9
    }
  ]
}

application/xml, text/xml

Sample:
<RequestEmployeeExcelCreate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RRCDR_Attendance_API.Helpers.Custom">
  <employeeExcelList>
    <EmployeeExcelCreate>
      <CompanyID>9</CompanyID>
      <Department>sample string 6</Department>
      <EmployeeNumber>sample string 1</EmployeeNumber>
      <FirstName>sample string 3</FirstName>
      <FullName>sample string 5</FullName>
      <LastName>sample string 4</LastName>
      <MobileNo>sample string 8</MobileNo>
      <Position>sample string 7</Position>
      <Title>sample string 2</Title>
    </EmployeeExcelCreate>
    <EmployeeExcelCreate>
      <CompanyID>9</CompanyID>
      <Department>sample string 6</Department>
      <EmployeeNumber>sample string 1</EmployeeNumber>
      <FirstName>sample string 3</FirstName>
      <FullName>sample string 5</FullName>
      <LastName>sample string 4</LastName>
      <MobileNo>sample string 8</MobileNo>
      <Position>sample string 7</Position>
      <Title>sample string 2</Title>
    </EmployeeExcelCreate>
  </employeeExcelList>
</RequestEmployeeExcelCreate>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Object

None.

Response Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />