create_invoice
Generate new invoices for organizations by providing organization ID and date information to create billing documents.
Instructions
Create a new invoice
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No | ||
organization_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"type": "string"
},
"organization_id": {
"type": "string"
}
},
"required": [
"organization_id"
],
"type": "object"
}