Workday Saas Connector

HI Experts,

I need to use a Filter to aggregate specific Users from Workday source(Workday SaaS connector). I have tried the using filterString from below link but it gives me 400 Bad Request error.

Further I checked below case where it mentioned that filterString does not work for Workday SaaS connector.

Anyone faced this issue or any workaround for this case? I have used the Exclude CW configuration, but it will not solve our use case.

Thanks,
Nikhlesh

1 Like

Hi Nikhilesh,

Try this - and do not add any additional quotes.

( EMAIL_ADDRESS_WORK.notNull() && EMAIL_ADDRESS_WORK.containsIgnoreCase(“[email protected]”) )

@anil_bandlamudi,

Adding double quotes is required for the correct JSON format.

“value”: “(EMAIL_ADDRESS_WORK.notNull() && EMPLOYEE_TYPE.contains("[email protected]"))”

Thanks.

Hi Nikhlesh,

Can you try -

“value”: “(EMAIL_ADDRESS_WORK.notNull() && EMPLOYEE_TYPE.contains(\"[email protected]\"))”

Or

“value”: “(EMAIL_ADDRESS_WORK.notNull() && EMPLOYEE_TYPE.contains('[email protected]'))”

@shaileeM,

No, it’s not working. I am getting 400 Bad Request Error in any filter I use, so I am guessing “fitlerString” is not compatible with Workday SaaS connector.

But apart from using filterString, do you think we can do anything else in this case?

Thanks.

Hi Nikhlesh,

Are you still getting 400 error or some other error.

Perhaps, you are right. Please check this post - Workday SaaS connector filter - #7 by vasanthrajsp29

It is worth consulting sailpoint support to confirm on this.

Thanks,
Shailee

Hi Shailee,

Yes, everytime its 400 Bad request.

Yes, i was referring to this post but just want to make sure if someone has implemented this using some other way.

Thanks for your inputs.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.