Catalog Search V1
Get Catalog Search Results
Use this API to retrieve a list of all catalog search results by key terms and filters. The response will include relevant details for each result, including the corresponding data asset ID, name, and the associated tags and terms.
🗒 Things to Know
- This API returns up to 100,000 catalog search results. For larger volumes, use the Get Catalog Search Results V2 API.
post/api/data-governance/v1/catalog/search
Request body
Example request
{
"searchText": "data privacy",
"filterCriteria": {
"criteriaGroups": [
{
"criteria": [
{
"searchField": "name",
"operator": "EQ",
"value": "Table123",
"values": {
"from": "61",
"to": "80"
},
"multiValue": [
"EmployeeId"
],
"dateUnitType": "DAYS",
"searchFieldDataType": "string",
"searchMode": "ALL",
"searchQueryType": "SIMPLE",
"multiValueRanges": [
{
"from": "61",
"to": "80"
}
]
}
]
}
]
},
"searchFields": [
"description"
],
"facets": [
"documentType"
],
"selectFields": [
"description"
]
}Response
OK
Example response
{
"documents": {
"data": [
{
"id": "172a829d-0f9f-45ab-b5f5-028d228c6edf",
"documentType": "metadata",
"name": "Employee table",
"jobId": "234a829d-0f9f-45ab-b5f5-028d228abcd",
"source": "data-discovery"
}
]
}
}