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
- Copy the API key from the Palveron Dashboard → Settings → API Keys
- Create a new scenario in Make.com
- 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:
| Field | Value |
|---|---|
| URL | https://gateway.palveron.com/api/v1/verify |
| Method | POST |
| Headers | Authorization: Bearer pv_live_YOUR_KEY |
| Headers | Content-Type: application/json |
| Body type | Raw |
| Content type | JSON (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 theoutputfield (PII masked)
Scenario 2: Daily Report of Blocked Traces
Run daily to get all blocked traces for compliance review.
| Field | Value |
|---|---|
| URL | https://gateway.palveron.com/api/v1/traces?decision=BLOCKED&limit=100 |
| Method | GET |
| Headers | Authorization: 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.
| Field | Value |
|---|---|
| URL | https://gateway.palveron.com/api/v1/agents |
| Method | GET |
| Headers | Authorization: Bearer pv_live_YOUR_KEY |
Use an Iterator over the agents array, then a Filter for status ≠ ACTIVE → send alert.
Tips
- Rate limits: Respect the
Retry-Afterheader 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
errorandcodefields. - 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
- n8n integration for an alternative low-code platform with a dedicated Palveron node
- API reference for the full endpoint list
- Create your own policies