Clock In-Out

The Clock In Clock Out API allows you to directly integrate your time management system with WFM. And, real-time clock-in/clock-out information is posted on WFM when you swipe/scan your cards and enter/exit the facility during break time.

API URL

POST ..lgfapi/v10/stage_track_record/clock_inout/

Request Parameters

Name Required Type Default Description
facility_code X String Facility code
univ_id_1 X String WMS user with Unique Employee ID (cw_user.univ_id_1)
cico_ts X DateTime Clock in/out date time
cico_type X String Valid Values: F1 through F6
originating_system X String Valid Values: M and S
work_area C String Should be populated if cico_type = F5 or F6
break C String Should be populated if cico_type = F2 or F3

Request Body Example

{

"message_id": 12345,

"async_flg": false,

"cico_data": [{

"facility_code": "FAC",

"univ_id_1": "user1",

"cico_ts": "20220505063027",

"cico_type": "F5",

"originating_system": "M",

"work_area": "WA001"

}]

}