How can I get a list of all the unmapped lookup values using POSTMAN?

Question

I want to be able to get a list of all of the unmapped lookup values.  The problem that is being encountered is that POSTMAN does not return back more than 1000.  This is a limitation in POST on response body.

 

Answer

 You can change the max response in POST. However, this change will impact your response time in POSTMAN.

postmanresponse.png

 

The solution to gather all of your unmapped values is to perform the following in three steps

 

GET https://rdm.reltio.com/unmapped/<RDMTenantId>?filter=(equals(type%2C%27LU_Region%27)
&limit=1000&sort=ASC
 GET https://rdm.reltio.com/unmapped/<RDMTenantId>?filter=(equals(type%2C%27LU_Region%27)
&limit=1000&sort=ASC&offset=1000
GET https://rdm.reltio.com/unmapped/<RDMTenantId>?filter=(equals(type%2C%27LU_Region%27)
&limit=1000&sort=ASC&offset=2000

 

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

Comments

0 comments

Please sign in to leave a comment.