Hi Phanindra,
End Date is available, out of the box. So, you don't need to add a new simple attribute L3 configuration. If you want to inactivate a profile from the UI, you can do the following
- Navigate to the base attribute facet on the profile in EDIT mode.
- Click on "More Attributes" and Select "End date".
- Update a value older than the current date in the "End date" field and that will inactivate the profile.
The same thing can be done using API as well. Here is a documentation for that - https://docs.reltio.com/en/explore/get-going-with-apis-and-rocs-utilities/reltio-rest-apis/model-apis/entities-api/update-entities/retrieve-or-modify-the-entity-startdate-and-enddate#change-enddate-0
Sample CURL command for retrieving and updating the end dates of an entity
curl --location 'https://{{env}}.reltio.com/reltio/api/{{mdmTenant}}/entities/{{entityId}}/activeness/endDate' \
--header 'Authorization: Bearer XXXXXXX' \
--header 'Content-Type: application/json'
API to update the end date for an entity
curl --location --request PUT 'https://{{env}}.reltio.com/reltio/api/{{mdmTenant}}/entities/{{entityId}}/activeness/endDate' \
--header 'Authorization: Bearer XXXXXXX' \
--header 'Content-Type: application/json' \
--data '{
"value": 1696668038000
}'
Here, you have to provide the value of the end date in UNIX epoch format.
------------------------------
Diparnab Dey
Technical Consultant
Reltio
Kolkata, West Bengal
------------------------------
Original Message:
Sent: 10-01-2024 01:49
From: Phanindra Raja
Subject: How can I Leverage OOTB End Date Attribute to Inactivate a profile
Hello Team,
How can I leverage the inbuilt OOTB End Date Attribute to Inactivate a profile.
I tried adding an End Date Attribute in my L3 configuration as shown below,
And added end date in reltio ui for one Entity. But the profile was not inactivated.
Can Anyone help on how can I inactivate a profile using OOTB End Date Attribute
Link - Reltio
------------------------------
Phanindra Raja
Onetrust
------------------------------