Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Workday SOAP Request

simran2003
7 - Meteor

Hi,

I am trying to fetch data from workday with the following SOAP Request but I am not able to do so:

<?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"
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<env:Header>
<wsse:Security env:mustUnderstand="1">
<wsse:UsernameToken>
<wsse:Username>USERNAME</wsse:Username>
<wsse:Password
Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">Password</wsse:Password>
</wsse:UsernameToken>
</wsse:Security>
</env:Header>
<env:Body>
<wd:Get_Workers_Request xmlns:wd="urn:com.workday/bsvc" wd:version="v33.2">
<wd:Response_Filter>
<wd:Page>1</wd:Page>
<wd:Count>1</wd:Count>
</wd:Response_Filter>
<wd:Response_Group>
<wd:Include_Personal_Information>true</wd:Include_Personal_Information>
<wd:Include_Employment_Information>true</wd:Include_Employment_Information>
<wd:Include_Qualifications>true</wd:Include_Qualifications>
</wd:Response_Group>
</wd:Get_Workers_Request>
</env:Body>
</env:Envelope>

 

Does any one know how to fetch the response from the above given request?

3 REPLIES 3
TrevorS
Alteryx Alumni (Retired)

Hello @simran2003 

Some additional information would be necessary for the community to assist you.

What does your workflow consist of currently? Can you share your workflow and some sample data? (Please make sure to use fake data with the sample data.)
Next, are you encountering any errors when you try to make the below request? If so, please include that error.

This will help to direct the community troubleshooting!

 

Thanks,
Trevor

Community Moderator
simran2003
7 - Meteor

Hey,I was using a download tool to fetch the data.The workflow is working now.There was some issue with my SOAP request only.

abhishekAlteryx
5 - Atom

I was trying the POST method on the SOAP request and passing the authorization parameters from the tool, but my request was processed when I was able to add it straight into the SOAP request as shown below. Hope this helps.

 

abhishekAlteryx_0-1645737452515.png

 

Labels