Custom Integration

Overview

The Customer Integration API empowers users to seamlessly extend Paradime's lineage and catalog capabilities with external applications. This powerful interface enables you to:

  • Create custom integrations tailored to your specific needs

  • Ingest and manage nodes from various data sources and applications

  • Upload node information for Paradime to incorporate into its lineage and catalog

  • Enhance data visibility by connecting Paradime with your entire data ecosystem

By leveraging this module, you can create a comprehensive, interconnected view of your data landscape, improving data governance, traceability, and insights across your organization.

Create a custom integration and upload nodes using JSON

This example uses as inputs the node_types.json and the nodes.json.

The below example is where we define our node types and the related attributes.

Defining color for a node:

The color can be one defined from one of the provided color palettes:

  • VIOLET #827be6

  • ORANGE #fb982e

  • MANDY #ef6292

  • TEAL #33a9a9

  • GREEN #27ae60

  • CORAL #FF8559

Defining icon for a node:

Example node_type.json

[
    {
        "node_type": "Datasource",
        "icon_name": "database",
        "color": "ORANGE"
    },
    {
        "node_type": "Chart",
        "icon_name": "pie-chart",
        "color": "TEAL"
    },
    {
        "node_type": "Dashboard",
        "icon_name": "dashboard",
        "color": "CORAL"
    }
]

Last updated

Was this helpful?