Monego
get_invoice
Get one invoice with line items, totals, status and — for drafts — effectiveFormat plus eInvoiceIssues[]: exactly what currently blocks finalize_invoice (empty list = ready to finalize). Response: { invoice { id, invoiceNumber, documentType, status, customerId, customerName, lineItems[], netTotal, taxTotal, grossTotal, format, effectiveFormat, eInvoiceIssues[], hasDocument, sentAt, paidAt, ... } }. Errors: { error: { code: 'not_found', ... } }.
Remote Account required revuo:monego
Remote (network-hosted) · Requires an account with the vendor · OAuth
Other tools also called get_invoice?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"invoiceId": {
"description": "Invoice id (from create_invoice or list_invoices).",
"type": "string"
}
},
"required": [
"invoiceId"
]
}