Tool details
Playground
Input schema
input-schema.json
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Update an existing invoice (subject, notes, dates, line items, state)
| Field | Value |
|---|---|
| Name | harvest__update_invoice |
| Group | Integrations |
{
"type": "object",
"properties": {
"account_id": {
"type": "string",
"description": "Harvest Account ID (get it from harvest__list_accounts)"
},
"invoiceId": {
"type": "number",
"description": "Harvest invoice ID"
},
"subject": {
"type": "string",
"description": "Updated subject"
},
"notes": {
"type": "string",
"description": "Updated notes"
},
"issue_date": {
"type": "string",
"description": "Updated issue date (YYYY-MM-DD)"
},
"due_date": {
"type": "string",
"description": "Updated due date (YYYY-MM-DD)"
},
"line_items": {
"type": "array",
"description": "Updated line items"
}
},
"required": [
"account_id",
"invoiceId"
],
"description": "Input schema for the harvest__update_invoice tool."
}