Extend functionality of the Workday HR spoke
-
- UpdatedJan 30, 2025
- 5 minutes to read
- Yokohama
- Now Platform Capabilities
Extend functionality of the Workday HR spoke
Extend the Workday HR spoke beyond the default functionalities, such as adding new input and output fields.
To extend the Workday HR spoke, ensure that the admin is aware of the Workday Public Web Services API and can configure the Workday system.
Example: Extend the Look up Workers action
Look up Workers action available along with the spoke provides most of the required inputs and outputs. Before adding more inputs and outputs to this action, explore ways to use the default spoke action.
This action transforms the input field data pills in the Workday HR spoke to the associated Workday request XML message and synchronously renders back the Workday response XML message as output field data pills in ServiceNow Workflow Studio. Ensure that you check the Sample request message and Sample response message.

- Ensure that you check if the regular input field or the Additional Field input field has the desired input. If none of them have the desired input, perform these instructions to manually create the required input field.
- The Look up Workers action supports Position Reference ID request element in the Additional Fields input field. For the purpose of demonstration, this field is manually being added in the UI.
- Evaluate and understand how Position Reference ID is structured in the Workday request message. The XPath to add a
Position Reference ID in the request message is two-folded as per the Workday Public Web Services community post.
- Position Reference Type attribute: Get_Workers_Request/Request_Criteria/Position_Reference/@type
- The attribute value above, per the Public Web Services doc, is a hard-coded
“Position ID.”
- Position Reference Value: Get_Workers_Request/Request_Criteria/Position_Reference
- The actual value above is a new input field in the spoke action.
- Create an input variable in the Action Input step. Click
Create Input and add a simple string type input variable.
- Create an input variable in the Pre Processing script step.
- Click Create Variable.
- Add the input variable name with name as position_reference_id.
- Drag the Position Reference ID data pill from
Input Variables and drop it at the value of the input
variable.
- Leverage the design pattern of var organizationReferenceStr in the script section.
- Create the XML node to match the Workday Get Worker Request message in this example.
- Find the appropriate design pattern in the script section accordingly. In this example, this XML node needs to be constructed for Position Reference.
- When the above XML is compared with the similar XML node, Organization Reference is a good candidate to leverage the associated design pattern script from. In the Script section, the associated script snippet is under “var organizationReferenceStr.
- Leverage the var organizationReferenceStr code snippet to construct the Position
Reference XML node accordingly.
- On the same script, in the var request section, leverage
the design pattern, and define an output variable.
- Create the Position XML node in the SOAP Step.
- Refer to Workday Get Worker Request message and the
position reference node accordingly.
- Save and publish it.
- Refer to Workday Get Worker Request message and the
position reference node accordingly.
- Test the action.
- As this is a data stream action, it should be tested using a flow. Create a sample
flow with the action in it.
- Provide Position ID and test the flow.
- Open the execution and navigate to SOAP step to check if the updated XML element
node with position reference is created.
- As this is a data stream action, it should be tested using a flow. Create a sample
flow with the action in it.
Example: Add and modify output fields of Workday spoke action
Extend the Workday spoke to retrieve the local first name and local last name.
- Evaluate and understand how the local name is structured in the Workday response message.
- Local First Name: The XPath for this element is Get_Workers_Response/Response_Data/Worker/Worker_Data/Personal_Data/Name_Data/Legal_Name_Data/Name_Detail_Data/Local_Name_Detail_Data/First_Name
- Local Last Name: The XPath for this element is Get_Workers_Response/Response_Data/Worker/Worker_Data/Personal_Data/Name_Data/Legal_Name_Data/Name_Detail_Data/Local_Name_Detail_Data/Last_Name
- Leverage the Legal Name design pattern in the Script Parser step and create the
snippet for local legal
name.
- Add the LocalLegalName to the PersonalData object.
- Create output variables in the Outputs step.
- Click Edit Output.
- Output fields don't need to follow the exact Workday response message hierarchy.
As long as the XPAth from the step 2 follows the right Workday XPath, the spoke
action can render the elements accordingly. In this case, adding the
Local Legal Name under Personal Data
is sufficient.Note: String variable name under the Name section must match with the same var name defined in step 2 above.
- Save and publish the action.Note: The Look up Workers action has a maximum number of output elements that a data stream action can have. If any error occurs during the publish of copied action with new output elements, delete a few output elements that are not required and try to publish again.
- Test the action.
- Ensure that the testing worker subject has the local first name and local last name in Workday.
- Create a sample flow, add the action to it, and log the response to verify output
elements.
- Provide the associated test worker subject’s Employee ID to test and run the
flow.
- Verify the log and executions to verify if the local first name and local last
name are retrieved correctly.