Resolution Persisted
The persisted resolution endpoints allow users to search for matching entities against a provided list of attributes. The endpoint is similar to the resolution endpoint, except it also stores matched entities into user’s project.
Path parameters
Unique identifier of the project
Headers
OAuth authentication of the form <token>.
Query parameters
A limit on the number of objects to be returned with a range between 1 and 10 inclusive. Defaults to 10.
Number of results to skip before returning response. Defaults to 0.
Request
Entity name
Entity address
Entity state that contains the provided state name.
Entity contact
Entity type. If multiple values are passed for any field, the endpoint will match entities with ANY of the values.
Specifies the search algorithm to use. corporate
(default) is optimized for accurate entity attribute matching, ideal for business verification. suppliers
is tailored for matching entities with trade data, suitable for supply chain use cases. search
mimics /search/entity behavior, best for name-only matches.
Adding this param enables an alternative matching logic. It will set a minimum percentage of tokens needed to match with user input to be considered a “hit”. Accepts integers from 0 to 100 inclusive.
Adding this param enables an alternative matching logic. It sets the minimum number of matching tokens the resolved hits need to have in common with the user input to be considered a “hit”. Accepts non-negative integers.
Enables a name search fallback when either the corporate or supplier profiles fails to find a match. When invoked, the fallback will make a call similar to /search/entity on name only. By default set to false.
Specifies the window of similar results returned in the match group. Increase for fewer multiple matches, decrease to open the aperture and allow for more matches. Default is .8
Specifies the maximum number of entity candidates considered during search. Default is 50. Higher values increase match pool size but also increase latency.
Bypasses the post-processing setps and re-ranking. Useful for debugging. By default set to false, set to true to enable.