get {protocol}://{base-url}/integration/v1/search/
API to fetch search results for given query params. This should match results retrieved on the Full Search page when searching using the Search UI.
Incorrect code generation
The code generator to the right creates an incorrect URL for the
filtersparameter, due to a bug with the Developer Portal provider that's outside of Alation's control. Until this bug is fixed, you will have to manually correct any generated URL that uses thefiltersparameter so that the value is valid JSON.As an example, the code generator might provide this incorrect URL:
https://{alation_domain}/integration/v1/search/?filters=otypes=tableThe correct URL would be:
https://{alation_domain}/integration/v1/search/?filters={"otypes":["table"]}