Monego

mark_invoice_paid

Mark a finalized, sent or overdue invoice as paid (sets paidAt to now). Idempotent: calling it on an already-paid invoice returns the invoice unchanged. Undo is available in the Monego app if needed. Response: { invoice { status:'paid', paidAt, ... } }. Errors: { error: { code: 'invalid_state' | 'not_found', ... } }.

Remote Account required revuo:monego

Remote (network-hosted) · Requires an account with the vendor · OAuth

Other tools also called mark_invoice_paid? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "invoiceId": {
      "description": "Id of the invoice to mark as paid.",
      "type": "string"
    }
  },
  "required": [
    "invoiceId"
  ]
}
          

Provider

Monego →