Monego
send_invoice
Email a finalized invoice to a recipient — this SENDS A REAL EMAIL with the stored artifact attached and cannot be recalled; confirm the recipient address before calling. Flips status finalized → sent and records sentAt / sentToEmail. Can be called again to re-send. Response: { invoice { status:'sent', sentAt, sentToEmail, ... } }. Errors: { error: { code: 'invalid_state' | 'bad_input' | 'not_found' | 'subscription_required', ... } }.
Remote Account required revuo:monego
Remote (network-hosted) · Requires an account with the vendor · OAuth
Other tools also called send_invoice?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"invoiceId": {
"description": "Id of a finalized (or already sent) invoice.",
"type": "string"
},
"recipientEmail": {
"description": "Recipient email address. Required — there is deliberately no fallback to the customer's stored email.",
"type": "string"
}
},
"required": [
"invoiceId",
"recipientEmail"
]
}