freeagent_create_bill
Create a bill in FreeAgent with required fields: contact, reference, dates, and line items including category, description, total value, and sales tax rate.
Instructions
Create a new bill in FreeAgent. bill_items should be a JSON string array of objects with category (URL), description, total_value, and sales_tax_rate.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| contact | Yes | Contact URL for the bill | |
| reference | Yes | Bill reference | |
| dated_on | Yes | Bill date (YYYY-MM-DD) | |
| due_on | Yes | Bill due date (YYYY-MM-DD) | |
| bill_items | Yes | JSON array of bill items, e.g. [{"category":"https://...","description":"Item","total_value":"100.00","sales_tax_rate":"20.0"}] | |
| currency | No | Currency code, e.g. GBP | |
| comments | No | Comments on the bill |