You can get this information in two ways:
1. Use offset
search instruction. (You can calculate offset by the formula: the offset = limit * number_of_pack
first pack has number 0 )
For example:
First pack:
GET: https://rdm.reltio.com/unmapped/CezUstqP4Izqfhm?filter=equals(type,'AWARDS_CATEGORY')&sort=code&order=asc&limit=100&offset=0
Second pack:
GET: https://rdm.reltio.com/unmapped/CezUstqP4Izqfhm?filter=equals(type,'AWARDS_CATEGORY')&sort=code&order=asc&limit=100&offset=100
2. Use dbscan
instruction - to get values from the Datastore without filtering. For it executes the following request (with an empty body)
POST: https://rdm.reltio.com/unmapped/CezUstqP4Izqfhm/_dbscan?filter=equals(type,'AWARDS_CATEGORY')&limit=100
BODY:
Get "scrollId"
from the response and send it as a body to get the next pack
For example
POST: https://rdm.reltio.com/unmapped/CezUstqP4Izqfhm/_dbscan?filter=equals(type,'AWARDS_CATEGORY')&limit=100
BODY:
CpEBEooBag1wfnByb2QtMTU1NDIycmILEhB....ZW50DKIBFERBVEFfQ2V6VXN0cVA0SXpxZmhtGAAgAA
you should repeat this request until the response has a "scrollId"
field
Comments
Please sign in to leave a comment.