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.
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
Comments
Please sign in to leave a comment.