Problem:
Users need to verify if Reltio provides predefined lookups for countries and states, and how to access and manage them.
Solution:
Yes, Reltio provides predefined lookups for countries and states as part of its Reference Data Management (RDM) functionality. These lookups are part of the Reltio Enrichment and Data Governance capabilities, allowing you to standardize and manage reference data across your system.
How to Access Reltio's Predefined Lookups:
You can access the predefined country and state lookups through the Reltio API. Here’s how:
-
Use the RDM Lookups API: You can query predefined lookups, including country and state codes, by using the
GET /lookups
API.Example request:
GET https://<environment>.reltio.com/reltio/api/<tenant>/lookups?source=Reltio
This will return all the lookups, including country and state lookups, from the Reltio system.
-
Check Specific Lookup Types: If you only need to check country or state codes, you can filter the lookups for the relevant type.
Example request for country lookups:
GET https://<environment>.reltio.com/reltio/api/<tenant>/lookups?type=LKUP_COUNTRY
How to Manage Predefined Lookups:
- Adding/Updating Lookups: You can modify the predefined lookups using the Reltio API to add new values or update existing ones based on your business needs.
-
Managing Canonical Values: Predefined lookups, including country and state codes, may use canonical values. You can standardize these values to ensure consistency across the system.
To update lookup values, use the
POST /lookups
API with the appropriate body format.
Example:
Here’s an example of how to update a country lookup to ensure it aligns with your desired format:
{ "type": "LKUP_COUNTRY", "values": [ { "code": "US", "value": "United States", "enabled": true, "canonicalValue": true } ] }
Additional Resources:
For more details on managing and using Reltio's predefined lookups, refer to the following documentation:
Comments
Please sign in to leave a comment.