View as Markdown
Interzoid icon

Interzoid ACTION

Generate Match Report

Generate a Match Report using a dataset table or file (CSV/TSV/Excel). See the documentation
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Interzoid account once, then configure and run Generate Match Report from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "interzoid-generate-match-report",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    interzoid: { authProvisionId: "apn_xxxxxxx" },
    category: "Matching Algorithm Type",
    source: "Database Connection Type",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Generate Match Report inputs
Property Type Description
category Matching Algorithm Type string
This category type indicates which set of Machine Learning and matching algorithms to make use of based on type of data content
Required
source Database Connection Type string
Source of data, such as 'CSV', 'Snowflake', 'Postgres', etc.
Required
connection Connection String string
Connection string to access database, or in the case of a CSV or TSV file, use the full URL of the location of the file.
Required
table Table Name string
Table name to access the source data. Use "CSV" or "TSV" for delimited text files.
Required
column Match Column Name string
Column name within the table to access the source data. This is a number for CSV or TSV files, starting with number 1 from the left side of the file.
Required
reference Reference string
An additional column from the source table to display in the output results, such as a primary key.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
interzoid-generate-match-report
Version
0.0.3
App
Interzoid
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes