addAccountingItems
Add charges, payments, or other accounting items to customer bills through the Mews MCP server. Streamline financial transactions by specifying customer IDs, accounting categories, and amounts in a structured format.
Instructions
Adds new accounting items (charges, payments, etc.) to customer bills
Input Schema
Name | Required | Description | Default |
---|---|---|---|
AccountingItems | Yes | Array of accounting item objects to create |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"AccountingItems": {
"description": "Array of accounting item objects to create",
"items": {
"properties": {
"AccountingCategoryId": {
"description": "Accounting category ID",
"type": "string"
},
"Amount": {
"description": "Amount object",
"properties": {
"Currency": {
"description": "Currency code",
"type": "string"
},
"Value": {
"description": "Amount value",
"type": "number"
}
},
"required": [
"Currency",
"Value"
],
"type": "object"
},
"ConsumedUtc": {
"description": "Consumption date/time (ISO 8601)",
"type": "string"
},
"CustomerId": {
"description": "Customer ID",
"type": "string"
},
"Name": {
"description": "Item name",
"type": "string"
},
"Notes": {
"description": "Item notes",
"type": "string"
}
},
"required": [
"CustomerId",
"AccountingCategoryId",
"Amount"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"AccountingItems"
],
"type": "object"
}