How can I verify whether country code displays properly in UI for the lookup?

Problem

Country Code is displaying as ‘United Kingdon(GB)” instead of ‘GB-United Kingdom(GB)”

Solution

For the issue reported, the country code value in the UI in the United Kingdom 

You can verify whether it displays correctly by doing the following:

1. Check the MDM tenant using the configuration API:

GET https://{EnvironmentURL}/reltio/api/{tenantId}/configuration

Find the RDM tenant ID. Use the snippet below to find the RDM tenant information:

"rdmTenantId": "{rdm tenantId}",

2. Use the API below to check the RDM lookups:

GET https://rdm.reltio.com/lookups/{rdmTenantId}

Below is the snippet from the RDM lookups where the value is mentioned as the United Kingdom

{
              "source": "Reltio",
              "values": [
                  {
                      "code": "GB",
                      "value": "United Kingdom",
                      "enabled": true,
                      "canonicalValue": true,
                      "downStreamDefaultValue": true
                  }
              ]
          },

To fix the misspelling in the UI cited in the problem statement, change the value so that the country code will be displayed as "GB-United Kingdom". Use the snippet below for reference.

From:

{
              "source": "Reltio",
              "values": [
                  {
                      "code": "GB",
                      "value": "United Kingdom",
                      "enabled": true,
                      "canonicalValue": true,
                      "downStreamDefaultValue": true
                  }
              ]
          },

To:

{
              "source": "Reltio",
              "values": [
                  {
                      "code": "GB",
                      "value": "GB-United Kingdom",
                      "enabled": true,
                      "canonicalValue": true,
                      "downStreamDefaultValue": true
                  }
              ]
          },

 Additional Information

https://docs.reltio.com/rdmapi/aboutrdmapi.html  

Was this article helpful?
0 out of 0 found this helpful

Comments

0 comments

Please sign in to leave a comment.