Retrieve lineages for asset - Precisely Data Integrity Suite

Data Integrity Suite APIs

Product
Data_Integrity
Spatial_Analytics
Data_Enrichment
geo_addressing_1
Services
Spatial Analytics
Data Enrichment
Geo Addressing
ft:title
Data Integrity Suite APIs
ft:locale
en-US
PublicationType
pt_developer
copyrightfirst
2023
copyrightlast
2026

Returns a list of lineages for an asset.

HTTP

GET https://hostname/v2/catalog/lineage/{assetId}

Request

Path parameters

Key Required Type Value Description
assetId Yes string objectId

Specifies object ID for asset to retrieve lineages.

Response

The successful response returns the collection of lineages that match the asset ID.

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.

Examples
{
  "data": {
    "assetId": "9B9Dfbc19C6cBCB0bDD97E1c",
    "displayValue": "Asset1",
    "aggregation": [
      {
        "type": "aggr1",
        "total": 22167466.413239807
      },
      {
        "type": "aggr2",
        "total": 7914668.93956469
      }
    ],
    "alerts": {},
    "icon": "testIcon",
    "path": {},
    "score": {
      "value": -38409356.89043983,
      "color": "Green"
    }
  },
  "links": {
    "self": "https://api.cloud.precisely.com/lineage/:assetId"
  }
}
{
  "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"
}