# Audit a Make.com template before you import it

**Use case:** 

Check a Make.com template or a shared blueprint before it goes into your account: cost, security, reliability and correctness rules in one run, a health score out of 100, and one row per finding with what to change. Paste the JSON from the template page or from a colleague's export.

## Input

```json
{
  "blueprintJson": {
    "name": "Form submission to CRM and Slack",
    "flow": [
      {
        "id": 1,
        "module": "gateway:CustomWebHook",
        "version": 1,
        "parameters": {
          "hook": 118273,
          "maxResults": 1
        },
        "mapper": {},
        "metadata": {
          "designer": {
            "x": 0,
            "y": 0
          }
        }
      },
      {
        "id": 2,
        "module": "hubspotcrm:createContact",
        "version": 3,
        "parameters": {
          "__IMTCONN__": 1003
        },
        "mapper": {
          "email": "{{1.email}}",
          "firstname": "{{1.first_name}}",
          "lastname": "{{1.last_name}}"
        },
        "metadata": {
          "designer": {
            "x": 300,
            "y": 0
          }
        }
      },
      {
        "id": 3,
        "module": "slack:CreateMessage",
        "version": 4,
        "parameters": {
          "__IMTCONN__": 1002
        },
        "mapper": {
          "channel": "leads",
          "text": "New lead {{1.email}} added to HubSpot as {{2.id}}",
          "parse": false
        },
        "metadata": {
          "designer": {
            "x": 600,
            "y": 0
          }
        }
      }
    ],
    "metadata": {
      "instant": true,
      "version": 1,
      "scenario": {
        "roundtrips": 1,
        "maxErrors": 3,
        "autoCommit": true,
        "autoCommitTriggerLast": true,
        "sequential": false,
        "confidential": false,
        "dataloss": false,
        "dlq": false,
        "freshVariables": false
      },
      "designer": {
        "orphans": []
      },
      "zone": "eu1.make.com"
    }
  },
  "blueprintUrls": [],
  "makeZone": "eu1",
  "teamIds": [],
  "scenarioIds": [],
  "activeOnly": false,
  "ruleSet": "all",
  "minSeverity": "info",
  "ignoreRules": [],
  "costPer1kOperations": 1.8,
  "includeReport": false
}
```

## Output

```json
{
  "severity": {
    "label": "Severity",
    "format": "string"
  },
  "estimatedMonthlyOpsWasted": {
    "label": "Ops wasted / month",
    "format": "number"
  },
  "estimatedMonthlySavingsUsd": {
    "label": "Savings / month (USD)",
    "format": "number"
  },
  "costConfidence": {
    "label": "Cost confidence",
    "format": "string"
  },
  "rule": {
    "label": "Rule",
    "format": "string"
  },
  "ruleTitle": {
    "label": "Finding",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "scenarioName": {
    "label": "Scenario",
    "format": "string"
  },
  "moduleType": {
    "label": "Module",
    "format": "string"
  },
  "moduleId": {
    "label": "Module id",
    "format": "integer"
  },
  "message": {
    "label": "Message",
    "format": "string"
  },
  "remediation": {
    "label": "Remediation",
    "format": "string"
  },
  "evidence": {
    "label": "Evidence",
    "format": "string"
  },
  "parameterPath": {
    "label": "Field",
    "format": "string"
  },
  "opsMultiplier": {
    "label": "Runs per bundle",
    "format": "integer"
  },
  "costMethod": {
    "label": "How it was priced",
    "format": "string"
  },
  "docsUrl": {
    "label": "Docs",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Make.com Scenario Auditor - Linter & Cost Review](https://apify.com/mediocre_interest/make-scenario-auditor.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/mediocre_interest/make-scenario-auditor.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/mediocre_interest/make-scenario-auditor.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
