Filter in Workday Source

Hi Experts,

We need to aggregate users from Workday who comes with a specific value of a certain attribute, please let us know if we can apply the filter in workday application to aggregate only specific users.

Thanks & Regards,
Nitin Jain

Here are some Workday filter examples:

‘!((COMPANY_NAME== “Global Modern Services, PLC (U.K.)”) && (FIRST_NAME.notNull()) && (LAST_NAME.notNull()) && !(FIRST_NAME.containsIgnoreCase (“test”)))’

‘!((FILENUMBER > “21794” && FILENUMBER != “21798” && FILENUMBER != “21797” && FILENUMBER != “bsherman”) || JOBTITLE.startsWith (“Manager Field”))’

‘!(JOBTITLE.startsWith (“Field Technician”) || JOBTITLE.startsWith (“Manager Field”))’

These can be added via the ‘POST /api/source/update/[SOURCEID]’ API.

Thanks Kerry.

Could you please help with the payload to be used for setting up the filter.

Thanks & Regards,
Nitin Jain

Hi Kerry,

We are also having the requirement where we want to fetch only specific user on the basis of JOBCODE or FILENUMBER.
Can you please help with the payload to be used for API.

Thanks,
Mahak Garg

solved in this post.