Monego
get_invoice_document
Download the stored, immutable e-invoice artifact of a finalized invoice. XRechnung invoices return the full XML inline (field xml); ZUGFeRD/Factur-X invoices return the PDF/A-3 as base64 (field pdfBase64). Drafts have no document — finalize_invoice first. Response: { invoiceNumber, format, fileName, mimeType, xml?, pdfBase64? }. Errors: { error: { code: 'not_found' | 'invalid_state', ... } }.
Remote Account required revuo:monego
Remote (network-hosted) · Requires an account with the vendor · OAuth
Other tools also called get_invoice_document?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"invoiceId": {
"description": "Id of a finalized invoice.",
"type": "string"
}
},
"required": [
"invoiceId"
]
}