Entitlement and Role description in campaign filter

Hi @Anshu_Kunal,

There is a post that shows how to format the json for campaign filters. Now, I don’t know if it will take the entitlement.description but you could try. Use the type as COMPOSITE and enter the property as entitlement.description.
Here’s an example,

"children": [
                        {
                            "operation": "AND",
                            "property": "entitlement.description",
                            "sourceName": "Enter Source Name",
                            "type": "COMPOSITE",
                            "value": "certify",
                            "children": [
                                {
                                    "type": "ENTITLEMENT",
                                    "operation": "CONTAINS",
                                    "property": "entitlement.description",
                                    "value": "certify"
                                },
                                {
                                    "type": "SOURCE",
                                    "operation": "EQUALS",
                                    "property": "application",
                                    "value": "Enter Source Name"
                                }
                            ]

Here’s that post for more details - Creating a Complex Campaign Filter (multiple AND/OR) - Any Examples? - #8 by mcheek.

Thanks!