EmployeeWebInterface


Click here for a complete list of operations.

UpdateEmployee

Update employee information, each field is required and will overwrite the employee record based on the information that is sent to the method. This is deprecated and is not the best way to update an employee. Instead, use our EEIDSubmit call found in our most recent API. Nevertheless, it currently still works with both TimeWorks and TimeWorksPlus. Currently, TimeWorksPlus users may see a delay in seeing updates made through this WebMethod due to TimeWorksPlus's caching system. If you use EEIDSubmit instead, there is no delay.

Test

To test the operation using the HTTP POST protocol, click the 'Invoke' button.
Parameter Value
employeeCode:
employee:
lastName:
firstName:
middleName:
designation:
title:
ssn:
dept:
location:
supervisor:
startDate:
endDate:
lunch:
lunchHours:
payRate0:
payRate1:
payRate2:
payRate3:
cardnum1:
cardNum2:
cardNum3:
password:
options:
home1:
home2:
home3:
schedule:
exportBlock:

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /pg/xml/EmployeeWebInterface.asmx HTTP/1.1
Host: www.swipeclock.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "https://mc2cs.com/scci/UpdateEmployee"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Header>
    <AuthHeader xmlns="https://mc2cs.com/scci">
      <password>string</password>
      <site>string</site>
      <userName>string</userName>
    </AuthHeader>
  </soap:Header>
  <soap:Body>
    <UpdateEmployee xmlns="https://mc2cs.com/scci">
      <employeeCode>string</employeeCode>
      <employee>int</employee>
      <lastName>string</lastName>
      <firstName>string</firstName>
      <middleName>string</middleName>
      <designation>string</designation>
      <title>string</title>
      <ssn>string</ssn>
      <dept>string</dept>
      <location>string</location>
      <supervisor>string</supervisor>
      <startDate>string</startDate>
      <endDate>string</endDate>
      <lunch>int</lunch>
      <lunchHours>float</lunchHours>
      <payRate0>decimal</payRate0>
      <payRate1>decimal</payRate1>
      <payRate2>decimal</payRate2>
      <payRate3>decimal</payRate3>
      <cardnum1>string</cardnum1>
      <cardNum2>string</cardNum2>
      <cardNum3>string</cardNum3>
      <password>string</password>
      <options>string</options>
      <home1>string</home1>
      <home2>string</home2>
      <home3>string</home3>
      <schedule>string</schedule>
      <exportBlock>int</exportBlock>
    </UpdateEmployee>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <UpdateEmployeeResponse xmlns="https://mc2cs.com/scci">
      <UpdateEmployeeResult>string</UpdateEmployeeResult>
    </UpdateEmployeeResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /pg/xml/EmployeeWebInterface.asmx HTTP/1.1
Host: www.swipeclock.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Header>
    <AuthHeader xmlns="https://mc2cs.com/scci">
      <password>string</password>
      <site>string</site>
      <userName>string</userName>
    </AuthHeader>
  </soap12:Header>
  <soap12:Body>
    <UpdateEmployee xmlns="https://mc2cs.com/scci">
      <employeeCode>string</employeeCode>
      <employee>int</employee>
      <lastName>string</lastName>
      <firstName>string</firstName>
      <middleName>string</middleName>
      <designation>string</designation>
      <title>string</title>
      <ssn>string</ssn>
      <dept>string</dept>
      <location>string</location>
      <supervisor>string</supervisor>
      <startDate>string</startDate>
      <endDate>string</endDate>
      <lunch>int</lunch>
      <lunchHours>float</lunchHours>
      <payRate0>decimal</payRate0>
      <payRate1>decimal</payRate1>
      <payRate2>decimal</payRate2>
      <payRate3>decimal</payRate3>
      <cardnum1>string</cardnum1>
      <cardNum2>string</cardNum2>
      <cardNum3>string</cardNum3>
      <password>string</password>
      <options>string</options>
      <home1>string</home1>
      <home2>string</home2>
      <home3>string</home3>
      <schedule>string</schedule>
      <exportBlock>int</exportBlock>
    </UpdateEmployee>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <UpdateEmployeeResponse xmlns="https://mc2cs.com/scci">
      <UpdateEmployeeResult>string</UpdateEmployeeResult>
    </UpdateEmployeeResponse>
  </soap12:Body>
</soap12:Envelope>

HTTP GET

The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.

GET /pg/xml/EmployeeWebInterface.asmx/UpdateEmployee?employeeCode=string&employee=string&lastName=string&firstName=string&middleName=string&designation=string&title=string&ssn=string&dept=string&location=string&supervisor=string&startDate=string&endDate=string&lunch=string&lunchHours=string&payRate0=string&payRate1=string&payRate2=string&payRate3=string&cardnum1=string&cardNum2=string&cardNum3=string&password=string&options=string&home1=string&home2=string&home3=string&schedule=string&exportBlock=string HTTP/1.1
Host: www.swipeclock.com
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<string xmlns="https://mc2cs.com/scci">string</string>

HTTP POST

The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.

POST /pg/xml/EmployeeWebInterface.asmx/UpdateEmployee HTTP/1.1
Host: www.swipeclock.com
Content-Type: application/x-www-form-urlencoded
Content-Length: length

employeeCode=string&employee=string&lastName=string&firstName=string&middleName=string&designation=string&title=string&ssn=string&dept=string&location=string&supervisor=string&startDate=string&endDate=string&lunch=string&lunchHours=string&payRate0=string&payRate1=string&payRate2=string&payRate3=string&cardnum1=string&cardNum2=string&cardNum3=string&password=string&options=string&home1=string&home2=string&home3=string&schedule=string&exportBlock=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<string xmlns="https://mc2cs.com/scci">string</string>