Search Overcollisioned Tokens API
Searches overcollisioned tokens in a tenant. Overcollisioned tokens can appear according
to the matchTokenCollisionsLimit
parameter of physical tenant.
Example:
Request:
Post {TenantURL}/entities/_matches/_searchOvercollisioned
{ "pageSize" : 10
}
Response:
{
"cursor": {
"cursor":
"eyJtYXRjaFRva2VuIjoidGVzdDEyM2VkbWlkZGxlbmFtZSA0NTYiLCJwYWdlU2l6ZSI6MTB9"
},
"objects": [
{
"token": "test123edmiddlename 456",
"id_sample": "0001wPJ",
"idsCount": 6,
"matchRuleLabels": [
"MatchByMiddleName"
]
},
{
"token": "van",
"id_sample": "0000I77",
"idsCount": 7,
"matchRuleLabels": [
"MatchByMiddleName"
]
}
]
}
Variable | Required | Details |
---|---|---|
pageSize
|
Yes | Determines amount of overcollisioned items to be returned |
cursor
|
No | Defines “cursor” which will be used to continue search of overcollisioned tokens after first data fetch. |
Sample request body with cursor variable:
Request:
Post {TenantURL}/entities/_matches/_searchOvercollisioned
{ "pageSize" : 1,
"cursor":"eyJtYXRjaFRva2VuIjoidmFuIiwicGFnZVNpemUiOjF9"
}
Response
{
"cursor": {
"cursor":
"eyJtYXRjaFRva2VuIjoidGVzdDEyM2VkbWlkZGxlbmFtZSA0NTYiLCJwYWdlU2l6ZSI6MX0="
},
"objects": [
{
"token": "test123edmiddlename 456",
"id_sample": "0001wPJ",
"idsCount": 6,
"matchRuleLabels": [
"MatchByMiddleName"
]
}
]
}