PalveronPalveronDocs

Make.com

AI governance for Make.com workflows — verify prompts, monitor traces, and enforce policies via the HTTP module.

Make.com Integration

Connect Palveron AI Governance to your Make.com scenarios via the HTTP module. No custom app required — Palveron is a standard REST API that works with Make.com's built-in HTTP request module.

Setup

  1. Copy the API key from the Palveron Dashboard → Settings → API Keys
  2. Create a new scenario in Make.com
  3. Use the HTTP > Make a request module with the following configurations

Scenario 1: Verify a Prompt

Checks any text against your governance policies.

HTTP module configuration:

FieldValue
URLhttps://gateway.palveron.com/api/v1/verify
MethodPOST
HeadersAuthorization: Bearer pv_live_YOUR_KEY
HeadersContent-Type: application/json
Body typeRaw
Content typeJSON (application/json)

Body:

{
  "prompt": "{{1.input_text}}",
  "metadata": {
    "source": "make.com",
    "scenario_id": "{{scenarioId}}"
  }
}

Router after Palveron:

  • Route 1: Filter decision = ALLOWED → continue to the LLM
  • Route 2: Filter decision = BLOCKED → send error notification
  • Route 3: Filter decision = MODIFIED → use the output field (PII masked)

Scenario 2: Daily Report of Blocked Traces

Run daily to get all blocked traces for compliance review.

FieldValue
URLhttps://gateway.palveron.com/api/v1/traces?decision=BLOCKED&limit=100
MethodGET
HeadersAuthorization: Bearer pv_live_YOUR_KEY

Forward output to email, Slack, Google Sheets, or Jira.

Scenario 3: Agent Status Monitoring

Periodically check agent health and alert on suspension.

FieldValue
URLhttps://gateway.palveron.com/api/v1/agents
MethodGET
HeadersAuthorization: Bearer pv_live_YOUR_KEY

Use an Iterator over the agents array, then a Filter for statusACTIVE → send alert.

Tips

  • Rate limits: Respect the Retry-After header on 429 responses. Use Make.com's built-in retry settings.
  • Error handling: Add an error-handler route after the HTTP module. Palveron returns structured JSON errors with error and code fields.
  • On-premise: Change the base URL to your internal gateway address.
  • Batch processing: Use an iterator before the Palveron module to process multiple prompts sequentially.

Next Steps

On this page