submit_tax_report
Submit tax reports directly to the Finanzamt using a report ID. Receive submission responses and a downloadable tax report link. A paid subscription is required if the response status is 403.
Instructions
Submit a tax report to the Finanzamt.
Args:
report_id: Public ID of the tax report to submit
Returns:
Response from the submission request and a link to the tax report from reportFile to download.
If response status is 403, it means a paid subscription is required to file the report.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
report_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"report_id": {
"title": "Report Id",
"type": "string"
}
},
"required": [
"report_id"
],
"title": "submit_tax_reportArguments",
"type": "object"
}