org.mule.modules

mule-module-workday

config

Namespacehttp://www.mulesoft.org/schema/mule/wd-performance
Schema Locationhttp://www.mulesoft.org/schema/mule/wd-performance/current/mule-wd-performance.xsd  (View Schema)
Schema Version2.0
Minimum Mule Version3.4

Module Overview

The Performance Management Web Service contains operations that expose Workday Employee Performance Management Business Services data. This Web Service can be used for integration with other employee performance management systems.

Summary

Configuration
<wd-performance:config>
Configure an instance of this module
Message Processors
<wd-performance:get-certification-issuers>
This operation retrieves the certification issuers that are currently defined.
<wd-performance:get-certifications>
This operation retrieves the certifications that are currently defined.
<wd-performance:get-competencies>
This operation retrieves the Competencies currently defined.
<wd-performance:get-competency-categories>
Get all competency categories
<wd-performance:get-competency-levels>
This operation retrieves the competency levels currently defined.
<wd-performance:get-degrees>
This operation retrieves the educational degrees that are currently defined.
<wd-performance:get-educational-institution-types>
This operation retrieves the Educational Institution Types that are currently defined;.
<wd-performance:get-fields-of-study>
This operation will get the Field of Studies currently defined.
<wd-performance:get-performance-certifications>
Retrieves the certifications that are currently defined.
<wd-performance:get-performance-competencies>
Retrieves the Competencies currently defined.
<wd-performance:get-performance-competency-categories>
Gets all competency categories
<wd-performance:get-performance-degrees>
Retrieves the educational degrees that are currently defined.
<wd-performance:get-performance-educational-institution-types>
Retrieves the Educational Institution Types that are currently defined
<wd-performance:get-performance-fields-of-study>
Gets the Field of Studies currently defined.
<wd-performance:get-performance-skill-source-precedences>
Gets all skill source precedences
<wd-performance:get-skill-source-precedences>
Get all skill source precedences
<wd-performance:manage-goals>
Allows adding a new worker goal and editing an existing goal for a worker.
<wd-performance:put-certification>
This operation allows for adding and updating certifications.
<wd-performance:put-certification-issuer>
This operation allows for adding and updating certification issuers.
<wd-performance:put-competency>
This operation adds or updates a Competency.
<wd-performance:put-competency-category>
Add/Update instances of competency category.
<wd-performance:put-competency-level>
This operation adds or updates competency levels.
<wd-performance:put-degree>
This operation adds or updates a Degree.
<wd-performance:put-educational-institution-type>
This operation adds or updates an Educational Institution Type.
<wd-performance:put-field-of-study>
This operation adds or updates a Field Of Study.
<wd-performance:start-performance-review>
Creates a completed performance review for an employee.
<wd-performance:update-employee-review-rating>
Allows for the updating of the manager's overall rating for an employee review.

Configuration

To use the this module within a flow the namespace to the module must be included. The resulting flow will look similar to the following:

<mule xmlns="http://www.mulesoft.org/schema/mule/core"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:wd-performance="http://www.mulesoft.org/schema/mule/wd-performance"
      xsi:schemaLocation="
               http://www.mulesoft.org/schema/mule/core
               http://www.mulesoft.org/schema/mule/core/current/mule.xsd
               http://www.mulesoft.org/schema/mule/wd-performance
               http://www.mulesoft.org/schema/mule/wd-performance/current/mule-wd-performance.xsd">

      <!-- here goes your flows and configuration elements -->

</mule>

Connection Pool

This connector offers automatic connection management via the use of a connection pool. The pool will act a storage mechanism for all the connections that are in-use by the user of this connector.

Prior to execution of a processor, the connector will attempt to lookup an already established connection and if one doesn't exists it will create one. That lookup mechanism is done in the connection pool via the use of connection variables declared as keys.

The user of the connector can configure the pool by adding a connection-pooling-profile to the connector configuration like this:

    <wd-performance:connection-pooling-profile maxActive="10" maxIdle="10"
                             exhaustedAction="WHEN_EXHAUSTED_GROW" maxWait="120" minEvictionMillis="60000" evictionCheckIntervalMillis="30000"/>

The following is a list of connection attributes, each connection attribute can be configured at the config element level or they can also be added to each processor. If they are used at the processor level they get the benefit of full expression resolution.

Connection Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
performanceUser Workday user String */* UTF-8
performancePassword Workday password String */* UTF-8
performanceEndpoint Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8

Reconnection Strategies

Reconnection Strategies specify how a connector behaves when its connection fails. You can control how Mule attempts to reconnect by specifying a number of criteria:

With a reconnection strategy, you can better control the behavior of a failed connection, by configuring it, for example, to re-attempt the connection only once every 15 minutes, and to give up after 30 attempts. You can also send an automatic notification to your IT administrator whenever this reconnection strategy goes into effect. You can even define a strategy that attempts to reconnect only during business hours. Such a setting can prove useful if your server is frequently shut down for nightly maintenance.

Configuration

A reconnection strategy that allows the user to configure how many times a reconnection should be attempted and how long to wait between attempts.

    <wd-performance:config>
         <reconnect count="5" frequency="1000"/>
    </wd-performance:config>
Reconnect Attributes
NameDefault ValueDescription
frequency 2000 Optional. How often (in ms) to reconnect
count 2 Optional. How many reconnection attempts to make

For more information about reconnection strategies in Mule, or even how to write your own custom reconnection strategy please check this section.

Message Processors

<wd-performance:get-certification-issuers>

This operation retrieves the certification issuers that are currently defined.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
getCertificationIssuersRequest #[payload] Optional. The request object for the operation GetCertificationIssuersRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
GetCertificationIssuersResponseType The response from the operation
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:get-certifications>

This operation retrieves the certifications that are currently defined.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
getCertificationsRequest #[payload] Optional. The request object for the operation GetCertificationsRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
GetCertificationsResponseType The response from the operation
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:get-competencies>

This operation retrieves the Competencies currently defined.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
getCompetenciesRequest #[payload] Optional. The request object for the operation GetCompetenciesRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
GetCompetenciesResponseType The response from the operation
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:get-competency-categories>

Get all competency categories

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
getCompetencyCategoriesRequest #[payload] Optional. The request object for the operation GetCompetencyCategoriesRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
GetCompetencyCategoriesResponseType The response from the operation
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:get-competency-levels>

This operation retrieves the competency levels currently defined.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
getCompetencyLevelsRequest #[payload] Optional. The request object for the operation GetCompetencyLevelsRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
GetCompetencyLevelsResponseType The response from the operation
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:get-degrees>

This operation retrieves the educational degrees that are currently defined.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
getDegreesRequest #[payload] Optional. The request object for the operation GetDegreesRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
GetDegreesResponseType The response from the operation
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:get-educational-institution-types>

This operation retrieves the Educational Institution Types that are currently defined;.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
getEducationalInstitutionTypesRequest #[payload] Optional. The request object for the operation GetEducationalInstitutionTypesRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
GetEducationalInstitutionTypesResponseType The response from the operation
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:get-fields-of-study>

This operation will get the Field of Studies currently defined.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
getFieldsOfStudyRequest #[payload] Optional. The request object for the operation GetFieldsOfStudyRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
GetFieldsOfStudyResponseType The response from the operation
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:get-performance-certifications>

Retrieves the certifications that are currently defined.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
certificationsRequest #[payload] Optional. Request element GetCertificationsRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
GetCertificationsResponseType response element
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:get-performance-competencies>

Retrieves the Competencies currently defined.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
competenciesRequest #[payload] Optional. This element contains optional reference and filter criteria for the request. GetCompetenciesRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
GetCompetenciesResponseType Response element for Get Competencies
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:get-performance-competency-categories>

Gets all competency categories

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
competencyCategoriesRequest #[payload] Optional. Element containing the references of the Competency Categories requested. GetCompetencyCategoriesRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
GetCompetencyCategoriesResponseType Response Element for Get Competency Categories.
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:get-performance-degrees>

Retrieves the educational degrees that are currently defined.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
degreesRequest #[payload] Optional. This element contains optional reference and filter criteria for the request. GetDegreesRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
GetDegreesResponseType Response element for Get Degrees.
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:get-performance-educational-institution-types>

Retrieves the Educational Institution Types that are currently defined

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
educationalInstitutionTypesRequest #[payload] Optional. Request element for Educational Institution Type request GetEducationalInstitutionTypesRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
GetEducationalInstitutionTypesResponseType Response element for Get Educational Institution Type
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:get-performance-fields-of-study>

Gets the Field of Studies currently defined.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
fieldsOfStudyRequest #[payload] Optional. Request element for the Get Fields Of Study operation GetFieldsOfStudyRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
GetFieldsOfStudyResponseType Response element for the Get Fields Of Study operation.
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:get-performance-skill-source-precedences>

Gets all skill source precedences

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
skillSourcePrecedencesRequest #[payload] Optional. Element containing the references of the Skill Source Precedences requested. GetSkillSourcePrecedencesRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
GetSkillSourcePrecedencesResponseType Response Element for Get Skill Source Precedences
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:get-skill-source-precedences>

Get all skill source precedences

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
getSkillSourcePrecedencesRequest #[payload] Optional. The request object for the operation GetSkillSourcePrecedencesRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
GetSkillSourcePrecedencesResponseType The response from the operation
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:manage-goals>

Allows adding a new worker goal and editing an existing goal for a worker.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
manageGoalsRequest #[payload] Optional. Contains the Manage Goal web service Request. ManageGoalsRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
ManageGoalsResponseType Response Element for Manage Goal.
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:put-certification>

This operation allows for adding and updating certifications.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
putCertificationRequest #[payload] Optional. The request object for the operation PutCertificationRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
PutCertificationResponseType The response from the operation
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:put-certification-issuer>

This operation allows for adding and updating certification issuers.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
putCertificationIssuerRequest #[payload] Optional. The request object for the operation PutCertificationIssuerRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
PutCertificationIssuerResponseType The response from the operation
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:put-competency>

This operation adds or updates a Competency.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
putCompetencyRequest #[payload] Optional. The request object for the operation PutCompetencyRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
PutCompetencyResponseType The response from the operation
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:put-competency-category>

Add/Update instances of competency category.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
putCompetencyCategoryRequest #[payload] Optional. The request object for the operation PutCompetencyCategoryRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
PutCompetencyCategoryResponseType The response from the operation
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:put-competency-level>

This operation adds or updates competency levels.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
putCompetencyLevelRequest #[payload] Optional. The request object for the operation PutCompetencyLevelRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
PutCompetencyLevelResponseType The response from the operation
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:put-degree>

This operation adds or updates a Degree.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
putDegreeRequest #[payload] Optional. The request object for the operation PutDegreeRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
PutDegreeResponseType The response from the operation
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:put-educational-institution-type>

This operation adds or updates an Educational Institution Type.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
putEducationalInstitutionTypeRequest #[payload] Optional. The request object for the operation PutEducationalInstitutionTypeRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
PutEducationalInstitutionTypeResponseType The response from the operation
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:put-field-of-study>

This operation adds or updates a Field Of Study.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
putFieldOfStudyRequest #[payload] Optional. The request object for the operation PutFieldOfStudyRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
PutFieldOfStudyResponseType The response from the operation
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:start-performance-review>

Creates a completed performance review for an employee. It allows for entry of Overall Ratings and Comments for the employee self evaluation and manager evaluation.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
startPerformanceReviewRequest #[payload] Optional. Performance review for an employee including all relevant sub processes of the Start Performance Review for Employee Business Process. StartPerformanceReviewRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
StartPerformanceReviewResponseType Responds with the Event ID for the Start Performance Review for Employee business process.
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

<wd-performance:update-employee-review-rating>

Allows for the updating of the manager's overall rating for an employee review. The following request parameters are used to find the correct review to update: Employee Reference, Review Type Reference, Period Start Date, Period End Date. The following request parameters are used to update the manager's rating information for the review: Rating Reference, Overall Rating Override.

XML Sample
INCLUDE_ERROR

Attributes
NameDefault ValueDescriptionJava TypeMIME TypeEncoding
config-ref Optional. Specify which configuration to use.
employeeReviewRating #[payload] Optional. Request element UpdateEmployeeReviewRatingRequestType */*
Connection Parameters
This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation.
performanceUser Optional. Workday user String */* UTF-8
performancePassword Optional. Workday password String */* UTF-8
performanceEndpoint Optional. Workday endpoint String */* UTF-8
performanceWsdlLocation https://community.workday.com/custom/developer/API/Performance_Management/v20/Performance_Management.wsdl Optional. Workday WSDL location String */* UTF-8
Returns
Return Type Description
UpdateEmployeeReviewRatingResponseType information for the employee review that was updated.
Exception Payloads
Payload ClassDescription
WorkdayException If an error during the operation occurs this exception is thrown

Message Sources

Transformers