Returns a list of predicates for the specified filter.
Request
Query parameters
| Key | Required | Type | Description |
|---|---|---|---|
| filter | Yes | string |
Filter the results by specifying one or more filters. field:operator(value):index Filter operators:
By default, multiple filter expressions are combined in an AND expression. Filter expressions can be grouped by appending the optional group For example, these filter expressions are in two different groups (0 and 1), so the combined expressions return results where
Filter expressions are case insensitive by default. |
| sort | No | string |
Sort the results by a field in ascending or descending order. asc(field) or desc(field) Specify Example: To first sort by
field1 in ascending order and then by field2 in descending order, use two sort expressions: |
| offset | No | number |
The number of records to skip before returning results. The minimum is |
| limit | No | number |
The number of records to return per page. The minimum is |
| includeTotal | No | boolean |
Return a count of the total number of records that match the specified filter expression regardless of the number of number of records returned in the response page.
The count is returned by the total property in the response body. If the totalOverflow property is set to true in the response body, then the total count is an estimate that may exceed the actual number of records returned by the search. |
Response
The successful response returns the collection of predicates that match the filter criteria.
Response body
Example status code responses for this method are shown here. To view the response schemas, you can download the Data Catalog APIs Open API Specification from the Precisely Developer Portal..
{
"data": [
{
"id": "B8EfB7C17b32BB5bA7b5B2ac",
"class": "Lineage",
"name": "string",
"inverse": "string",
"xref": [
"string"
],
"state": "Active",
"overridability": "All",
"createdBy": "string",
"createdAt": "2025-09-16T17:11:28.740Z",
"updatedAt": "2025-09-16T17:11:28.740Z",
"updatedBy": "string"
}
],
"links": {
"self": "https://api.cloud.precisely.com/predicates"
}
}
{
"statusCode": 400,
"error": "Bad Request",
"message": "Bad Request"
}{
"statusCode": 401,
"error": "Unauthorized",
"message": "Authentication required"
}{
"statusCode": 404,
"error": "Not Found",
"message": "Resource not found"
}{
"statusCode": 429,
"error": "Too Many Requests",
"message": "Rate limit exceeded"
}{
"statusCode": 500,
"error": "Internal Server Error",
"message": "An unexpected error occurred"
}{
"statusCode": 503,
"error": "Service Unavailable",
"message": "Service temporarily unavailable"
}{
"statusCode": 504,
"error": "Gateway Timeout",
"message": "Request timeout"
}