Hi,
I am using the JSON input payload for an externally triggered SailPoint workflow:
{
"input":
{
"name" : "ISC-DB-SB-Test",
"contextArray": [
{ "key": "Country", "value": ["DE", "BG"] },
{ "key": "Store", "value": ["5"] }
]
}
}
I would like to use Microsoft Graph API call to filter groups and form the following filter query:
startswith(displayName,'{{ $.trigger.input.name }}') and extension_c92077a3afa34e6186e3fcbe2fd6cbc4_ContextValues/any(s:s eq 'Country:[DE,BG]') and extension_c92077a3afa34e6186e3fcbe2fd6cbc4_ContextValues/any(s:s eq 'Store:[5]')
Any ideas on how can the json input parameter be used to construct the filter query will be great !