AVAILABLE
Preflight Controls
NetSuite / QuickBooks Preflight
Read-only vendor-bill controls for customer-supplied NetSuite or QuickBooks references. It never connects to or writes to either ERP.
CONTRACT
Predictable for agents. Legible for reviewers.
- REST
POST /v1/erp-bill-preflights- MCP tool
preflight_erp_bill- Inputs
- ERP type, normalized invoice, vendor and source-record references, plus optional currency, existing-bill, and approval context.
- Returns
- CLEAR, REVIEW_REQUIRED, or BLOCKED with deterministic mapping, duplicate-reference, currency, and approval evidence.
- Latency
- Synchronous
- Usage unit
- Preflight check
AGENT-READABLE EXCEPTIONS
ERP_VENDOR_REFERENCE_MISMATCHERP_EXISTING_BILL_REFERENCEERP_CURRENCY_MISMATCHERP_APPROVAL_MISSINGEXAMPLE REQUEST
POST /v1/erp-bill-preflights
Authorization: Bearer apc_...
Content-Type: application/json
{
"erp": "NETSUITE",
"invoice": {
"vendor_name": "Acme",
"invoice_number": "INV-100",
"currency": "USD",
"total": "125.00"
},
"vendor_reference": "vendor-42",
"source_record_id": "intake-100"
}REPRESENTATIVE RESPONSE
{
"product": "ERP Bill Preflight",
"status": "COMPLETED",
"decision": "CLEAR",
"exceptions": [],
"evidence": {
"erp": "NETSUITE",
"vendor_reference": "vendor-42"
},
"next_action": "Continue only through the authorized ERP workflow."
}Use NetSuite / QuickBooks Preflight through RapidAPI.
Choose a capped marketplace plan, copy the generated request, and route the structured result through your own authorized workflow.