Workday人力资源API-无效的请求服务版本

时间:2019-05-20 18:45:10

标签: soap workday-api

我正在尝试向Get_Employee端点发出一个GET请求示例,但我收到“无效的请求服务版本”错误。

我遵循了WorkDay提供的教程,但仍无法正常使用:https://community.workday.com/articles/6120?page=1

这是我遇到的终点:https://services1.myworkday.com/ccx/service/MYTENANTNAME/Human_Resources/v32.1

我希望收到XML有效负载,而是收到以下错误

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Body>
      <SOAP-ENV:Fault xmlns:wd="urn:com.workday/bsvc">
         <faultcode>SOAP-ENV:Client.validationError</faultcode>
         <faultstring>Invalid request service version</faultstring>
      </SOAP-ENV:Fault>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

1 个答案:

答案 0 :(得分:1)

请确保您在soapenv:Body的第一个节点中指定的版本引用了您要向其提交请求的版本。在下面的示例中,您将在下面的bsvc:Get_Change_Work_Contact_Information_Request节点中将其视为属性:

   <soapenv:Header>
      <bsvc:Workday_Common_Header>
         <bsvc:Include_Reference_Descriptors_In_Response>false</bsvc:Include_Reference_Descriptors_In_Response>
      </bsvc:Workday_Common_Header>
   </soapenv:Header>
   <soapenv:Body>
      <bsvc:Get_Change_Work_Contact_Information_Request bsvc:version="v31.2">
         <bsvc:Request_References>
            <bsvc:Person_Reference>
               <bsvc:ID bsvc:type="Employee_ID">139420</bsvc:ID>
            </bsvc:Person_Reference>
         </bsvc:Request_References>
      </bsvc:Get_Change_Work_Contact_Information_Request>
   </soapenv:Body>
</soapenv:Envelope>