Missionize

Enterprise Onboarding

Connect Missionize to your existing AI systems in minutes. No infrastructure changes. No new vendor relationships for your engineering team.

1

Get Your API Key

Go to Workspace Settings -> API Keys -> Generate. Keys are prefixed with mzkey_ and scoped to your workspace. Paste your key into the key icon in the top right of any page -- it saves automatically.

Authorization: Bearer mzkey_xxxxxxxxxxxx...
2

Connect Your System

Choose the path that matches where your AI agents live. All integrations use the same intercept pattern -- one call before any sensitive action, Missionize returns allow or block instantly.

No-Code / WebhookEasiest
Salesforce FlowPower AutomateServiceNowZapierMake.comn8nMicrosoft Copilot

Add one HTTP POST to your existing flow before any sensitive action. No code changes to your agents.

POST https://api.missionize.ai/webhooks/salesforce/intercept
POST https://api.missionize.ai/webhooks/power_automate/intercept
POST https://api.missionize.ai/webhooks/servicenow/intercept

Body:
{
  "tool_name": "transfer_funds",
  "tool_input": { "amount": 75000, "to_account": "..." },
  "agent_id": "your-agent-name"
}

Response:
{
  "allowed": true | false,
  "decision": "proceed" | "block" | "require_approval",
  "reason": "...",
  "evidence_id": "..."
}
Workflow BuildersExport from Mission Crews

Build your governed crew in Mission Crews, click Export Crew, and import the file directly into your tool. Missionize pre-wires every intercept call for you.

n8n JSONMake.comCopilot StudioPython ScriptPostman
Developer SDKPython / LangChain / OpenAI

Copy sdk/missionize_agent.py into your project. Zero dependencies. Wrap any tool call with one line.

from missionize_agent import MissionizeAgent

agent = MissionizeAgent(api_key="mzkey_...", base_url="https://api.missionize.ai")
session = agent.start_session(agent_id="my-agent")

# Before every sensitive tool call:
result = agent.intercept(
    session_id=session["session_id"],
    tool_name="transfer_funds",
    tool_input={"amount": 75000},
)
# Raises MissionizeBlockError automatically if policy blocks it
3

Define Your Governance Policy

Go to Mission Architect. Write rules in plain English or upload your existing compliance documents (PDF, DOCX, MD, TXT). Missionize extracts rules automatically -- you review and approve each one.

Observe>Require Approval>Block
4

Evidence Is Automatic

Every intercepted action generates a sealed evidence envelope -- SHA-256 hash chain, tamper-evident, permanently on record. DG99 confidence scores are included for every agent action.

View any session in Mission Crews > Live Feed. Export as PDF from the Dashboard. Verify offline:

missionize verify bundle.zip