AVAILABLE
Preflight Controls
Procurement Agent Safety
Read-only deterministic safety gate for procurement-agent proposals. It never authorizes payments or vendor-record changes.
CONTRACT
Predictable for agents. Legible for reviewers.
- REST
POST /v1/procurement/agent-preflights- MCP tool
check_procurement_agent_action- Inputs
- Agent ID, proposed action, category, amount, budget, authority, vendor, contract, approval, and restricted-category context.
- Returns
- CLEAR, REVIEW_REQUIRED, or BLOCKED with explicit policy evidence and a human next action.
- Latency
- Synchronous
- Usage unit
- Preflight check
AGENT-READABLE EXCEPTIONS
PROCUREMENT_ACTION_NOT_PERMITTEDPROCUREMENT_BUDGET_UNAVAILABLEPROCUREMENT_REQUESTER_NOT_AUTHORIZEDPROCUREMENT_APPROVAL_MISSINGEXAMPLE REQUEST
POST /v1/procurement/agent-preflights
Authorization: Bearer apc_...
Content-Type: application/json
{
"agent_id": "buyer-agent",
"action": "CREATE_PURCHASE_ORDER",
"category": "supplies",
"amount": "250.00",
"budget_available": true,
"requester_authorized": true,
"vendor_approved": true,
"contract_reference": "MSA-1"
}REPRESENTATIVE RESPONSE
{
"product": "Procurement Agent Safety",
"status": "COMPLETED",
"decision": "CLEAR",
"exceptions": [],
"evidence": {
"proposed_action": "CREATE_PURCHASE_ORDER",
"agent_id": "buyer-agent"
},
"next_action": "Pass the proposal to the authorized downstream workflow."
}Use Procurement Agent Safety through RapidAPI.
Choose a capped marketplace plan, copy the generated request, and route the structured result through your own authorized workflow.