Reltio Connect

 View Only
  • 1.  can we include Exact(First name , last name) or Exact (full name) in the same match rule

    Reltio Partner
    Posted 04-10-2023 02:29

    Hi All,

    We are getting only full name(which includes middle name) from some sources and only first name and last name from other sources. Can we include (Exact (fullname) or Exact (First Name,last name)) and Exact(NPI) condition with only one match rule ?

    We had implemented match rule with multiple sets one with OR(Exact (fullname,NPI),Exact (First Name,last name)) and Exact(NPI)) but it is not working .

    Could you please let us know , how we can satisfy the requirement with one match rule.



    ------------------------------
    Thanks and Regards
    Chenchu Giri Manduva
    ------------------------------


  • 2.  RE: can we include Exact(First name , last name) or Exact (full name) in the same match rule
    Best Answer

    Reltio Employee
    Posted 04-14-2023 08:14

    Hi Chenchu,

    I have not tested it, but I believe that the following structure would work for your purposes here:
    "rule": {
        "and": {
            "exact": [
                "configuration/entityTypes/HCP/attributes/NPI"
            ],
            "or": {
                "exact": [
                    "configuration/entityTypes/HCP/attributes/Name"
                ],
                "and": {
                    "exact": [
                    "configuration/entityTypes/HCP/attributes/FirstName",
                    "configuration/entityTypes/HCP/attributes/LastName"
                    ]
                }
            }
        }
    }

    Kind regards,
    Matt



    ------------------------------
    Matthew Gagan
    ------------------------------



  • 3.  RE: can we include Exact(First name , last name) or Exact (full name) in the same match rule

    Reltio Partner
    Posted 04-26-2023 04:50

    Thank you Matthew , 

    It is working.






    ------------------------------
    Thanks and Regards
    Chenchu Giri Manduva
    ------------------------------