Hello,
Good day!
I'm trying to get employee information from Workday using a SOAP message.
I just wanted to know the response message.

This message works in SOAP UI.
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<env:Body>
<wd:Get_Workers_Request xmlns:wd="urn:com.workday/bsvc" wd:version="v33.2">
<wd:Request_References wd:Skip_Non_Existing_Instances="true" wd:Ignore_Invalid_References="true">
<wd:Worker_Reference>
<wd:ID wd:type="Employee_ID"><EmployeeID></wd:ID>
</wd:Worker_Reference>
</wd:Request_References>
<wd:Response_Group>
<wd:Include_Personal_Information>true</wd:Include_Personal_Information>
</wd:Response_Group>
</wd:Get_Workers_Request>
</env:Body>
</env:Envelope>
This SOAP message request doesn't work and I received an invalid request error message when running it.
Thank you.
Regards,
Junmar