Returns a list of relation types for the specified filter criteria.
Request
Query parameters
| Key | Required | Type | Value | Description |
|---|---|---|---|---|
| filter | No | string | field:operator(value):index |
Filter the results by specifying one or more filters. 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 |
asc(field) or desc(field) |
Sort the results by a field in ascending or descending order Specify Example: To first sort by
field1 in ascending order and then by field2 in descending order, use two sort expressions: |
| offset | No | number | number of
records |
The number of records to skip before returning results. The minimum is |
| limit | No | number | number of
records |
The number of records to return per page. The minimum is |
| includeTotal | No | boolean | true | false |
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 method. |
| search | No | boolean | true | false |
Use search engine to perform the filter operation.
The search engine:
Note: In rare cases, the
search=true parameter setting may not return recently created or updated records. |
| includeTotalLimit | No | number | limit |
Response
The response returns the collection of Relations 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": "68ca9d565ae39f6b24b87282",
"overridability": "All",
"subjectCardinality": "One",
"objectCardinality": "Many",
"class": "Simple",
"subjectId": "6853c744e223c4e03ea5872b",
"objectId": "68c2ac62bb0f260fe2a52597",
"state": "Active",
"createdBy": "00u17r5rbf45iXfQp0h8",
"createdAt": "2025-09-17T11:36:54.423Z",
"updatedAt": "2025-09-17T11:39:54.566Z",
"updatedBy": "00u17r5rbf45iXfQp0h8",
"predicateId": "68ca9adf9a68cae1704d4222",
"subjectName": "QA-AT-1706-A",
"objectName": "QA_TECH_SAMPLE_11",
"predicateName": "NameUpdated",
"xref": [
"cc3c545a3fcc"
],
"properties": [
{
"name": "Link",
"label": "Link",
"type": "Link",
"definition": {
"link": {
"defaultLabel": "Example",
"defaultUrl": "https://www.example.com"
}
},
"requirement": "Optional",
"category": "General",
"display": {
"show": true,
"showIfEmpty": true,
"showInColumn": true
},
"editableOnUi": false
}
]
}
],
"links": {
"self": "https://api.cloud.precisely.com/relation-types"
}
}
{
"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"
}