AVAILABLE
Reconciliation
Remittance Advice Match
Read-only exact candidate matching for supplied references, amount, vendor, and currency. It never posts a payment.
CONTRACT
Predictable for agents. Legible for reviewers.
- REST
POST /v1/remittances/match- MCP tool
match_remittance_advice- Inputs
- Remittance reference, amount, optional invoice references and vendor, and customer-provided open invoice baseline.
- Returns
- CLEAR or REVIEW_REQUIRED with selected open-invoice evidence.
- Latency
- Synchronous
- Usage unit
- Control check
AGENT-READABLE EXCEPTIONS
REMITTANCE_INVOICE_NOT_OPENREMITTANCE_NO_CANDIDATEREMITTANCE_AMOUNT_MISMATCHEXAMPLE REQUEST
POST /v1/remittances/match
Authorization: Bearer apc_...
Content-Type: application/json
{
"remittance_reference": "REM-1",
"remitted_amount": "25.00",
"invoice_references": [
"INV-1"
],
"open_invoices": [
{
"invoice_reference": "INV-1",
"open_amount": "25.00"
}
]
}REPRESENTATIVE RESPONSE
{
"product": "Remittance Advice Match",
"status": "COMPLETED",
"decision": "CLEAR",
"exceptions": [],
"evidence": {
"remittance_reference": "REM-1",
"candidate_invoice_references": [
"INV-1"
],
"candidate_open_amount": "25.00",
"currency": "USD"
},
"next_action": "Post only through the authorized accounting workflow."
}Use Remittance Advice Match through RapidAPI.
Choose a capped marketplace plan, copy the generated request, and route the structured result through your own authorized workflow.