Hello
I have this UKG input file, and I have to build a studio integration inbound to load those data into workday, do you have any idea of web service should I use?
I found this, but not sure how to integrate both amount accrued and taken
<bsvc:Put_Absence_Input_Request xmlns:bsvc="urn:com.workday/bsvc" bsvc:version="v43.0">
<bsvc:Absence_Input_Data>
<!-- Batch ID helps group UKG file loads -->
<bsvc:Batch_ID>UKG_LOAD_20250506</bsvc:Batch_ID>
<!-- PersonNumber → Employee_ID -->
<bsvc:Worker_Reference>
<bsvc:ID bsvc:type="Employee_ID">EMP12345</bsvc:ID>
</bsvc:Worker_Reference>
<!-- AccrualCode → Absence Component -->
<bsvc:Absence_Component_Reference>
<bsvc:ID bsvc:type="Absence_Component_ID">ANNUAL_LEAVE</bsvc:ID>
</bsvc:Absence_Component_Reference>
<!-- Date = period start/end -->
<bsvc:Start_Date>2025-03-01</bsvc:Start_Date>
<bsvc:End_Date>2025-03-31</bsvc:End_Date>
<bsvc:Reference_Date>2025-03-31</bsvc:Reference_Date>
<!-- Amount Taken → Hours -->
<bsvc:Hours>8.00</bsvc:Hours>
<!-- Set true if correcting a previous entry -->
<bsvc:Adjustment>false</bsvc:Adjustment>
</bsvc:Absence_Input_Data>
</bsvc:Put_Absence_Input_Request>
Thanks