Accelerate the Value of Data

Reindexing the Unmapped Values

This task enables you to reindex the unmapped values in a tenant.

Important: You must run this task if any data synchronization issues are detected.

To reindex the unmapped values, use the parameters listed in Table 1: Parameters to Reindex Unmapped Values.

Table 1. Parameters to Reindex the Unmapped Values
Parameter Name Mandatory Type Description
type No String Defines the type of unmapped values to reindex. If this paramter is not set then all unmapped values will be reindexed.

This is an optional parameter.

uris

No

Array Defines the list of lookup URIs that are to be reindexed.

Example: Reindexes all the unmapped values in a tenant


POST https://{{rdm-service}}/tasks/{{tenantId}}
Authorization: Bearer {{token}}
{
  "type": "reindexUnmapped"
}

Example: Reindex unmapped values of certain lookup types only


POST https://{{rdm-service}}/tasks/{{tenantId}}
Authorization: Bearer {{token}}
{
  "type": "reindexUnmapped",
  "parameters": {
    "type": "rdm/lookupTypes/Country"
  }
}
Example: Reindex unmapped values by their URIs

POST https://{{rdm-service}}/tasks/{{tenantId}}
Authorization: Bearer {{token}}
{
  "type": "reindexUnmapped",
  "parameters": {
    "uris": [
      "rdm_tenant_id/Country/Reltio/CA",
      "rdm_tenant_id/Country/AHA/USA",
      "rdm_tenant_id/Country/HMS/CZ"
    ]
  }
}