Reltio Connect

 View Only
  • 1.  is there a way to append the multiple values instead of overwriting for a single attribute in reltio

    Posted 12-27-2022 06:42
    Inorder to append/update a simple attribute having 100+values , we need to pull 100+ values and append the latest value.is there a way to append the value with the existing records instead of overriding it

    ------------------------------
    Akshaya Jawaharr

    ------------------------------


  • 2.  RE: is there a way to append the multiple values instead of overwriting for a single attribute in reltio

    Reltio Employee
    Posted 12-29-2022 10:22
    Hi Akshaya,

    AFAIK this is not possible as of today for simple attributes (possible for nested though). I think this is a good candidate for requesting an enhancement through our IDEAS portal

    ------------------------------
    Thanks,
    Snehil Kamal
    Solution Architect
    Reltio
    Bangalore
    ------------------------------



  • 3.  RE: is there a way to append the multiple values instead of overwriting for a single attribute in reltio

    Reltio Partner
    Posted 01-13-2023 09:56
    Hi Akshaya,

    You can use the bulk update API to append values to an existing simple attribute. If the survivorship of the simple attribute is Aggregation then all existing values will be OV else only the latest value will be OV.

    PFB the API sample used to achieve the same for a sample containing only a single crosswalk.
    For details, you can refer the documentation link.

    Bulk Update of Attributes


    API used: 
    POST {{tenantURL}}/entities/_update

    Request Body:

    {
    "objects": {
    "filter": "(equals(type,'configuration/entityTypes/Individual') and equals(id,'4W5ff44')",
    "excludeList": [
    "entities/KKK"
    ]
    },
    "actions": [
    {
    "operationParameters": {
    "sourceTypes": [
    "LNKD"
    ],
    "attributeURI": "configuration/entityTypes/Individual/attributes/FirstName",
    "attributeValue": "Name3"
    },
    "operation": "AddAttribute"
    }
    ]
    }

    ------------------------------
    Saquib Muslim
    Accenture
    ------------------------------